Ignore:
Timestamp:
02/21/12 11:07:59 (13 years ago)
Author:
phdmakk
Message:
  • switched to upstream AbstractVisitor? and exceptions
  • changed version number
  • improved and unified error messages

+ added memory statistics in debug mode

Location:
trunk/t3q/src/org/etsi/t3q/visitor
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/t3q/src/org/etsi/t3q/visitor/QualityChecker.java

    r47 r51  
    19001900                do { 
    19011901                        if (logItem.getFirstChild().getType()!=TTCN3ParserTokenTypes.TemplateInstance){ 
     1902                                //get actual log item text 
    19021903                                logStatementText += logItem.getFirstChild().getText(); 
    19031904                        } else { 
    1904                                 //TODO: attempt to perform resolution 
     1905                                //substitute other elements with empty string 
    19051906                                logStatementText += ""; 
    19061907                                //TODO: consider fixing the parser, this is an ugly workaround 
  • trunk/t3q/src/org/etsi/t3q/visitor/T3QVisitor.java

    r7 r51  
    44 
    55import org.etsi.t3q.T3Q; 
    6 import org.etsi.t3q.exceptions.TTCN3BehaviorException; 
    76 
    87import de.ugoe.cs.swe.trex.core.analyzer.rfparser.LocationAST; 
    9  
     8import de.ugoe.cs.swe.trex.core.visitor.AbstractVisitor; 
     9import de.ugoe.cs.swe.trex.core.visitor.TTCN3BehaviorException; 
     10 
     11//TODO: substitute with upstream abstract visitor 
    1012public class T3QVisitor extends AbstractVisitor { 
    1113 
Note: See TracChangeset for help on using the changeset viewer.