Java Doc for TreeFormatter.java in  » Scripting » oscript-2.10.4 » oscript » visitor » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » oscript 2.10.4 » oscript.visitor 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   oscript.visitor.DepthFirstVisitor
      oscript.visitor.TreeFormatter

TreeFormatter
public class TreeFormatter extends DepthFirstVisitor (Code)
A skeleton output formatter for your language grammar. Using the add() method along with force(), indent(), and outdent(), you can easily specify how this visitor will format the given syntax tree. See the JTB documentation for more details. Pass your syntax tree to this visitor, and then to the TreeDumper visitor in order to "pretty print" your tree.



Constructor Summary
public  TreeFormatter()
     The default constructor assumes an indentation amount of 3 spaces and no line-wrap.
public  TreeFormatter(int indentAmt, int wrapWidth)
     This constructor accepts an indent amount and a line width which is used to wrap long lines.

Method Summary
protected  voidadd(FormatCommand cmd)
     Use this method to add FormatCommands to the command queue to be executed when the next token in the tree is visited.
protected  FormatCommandforce()
     A Force command inserts a line break and indents the next line to the current indentation level.
protected  FormatCommandforce(int i)
    
protected  FormatCommandindent()
     An Indent command increases the indentation level by one (or a user-specified amount).
protected  FormatCommandindent(int i)
    
protected  FormatCommandoutdent()
     An Outdent command is the reverse of the Indent command: it reduces the indentation level.
protected  FormatCommandoutdent(int i)
    
protected  voidprocessList(NodeListInterface n)
     Accepts a NodeListInterface object and performs an optional format command between each node in the list (but not after the last node).
protected  voidprocessList(NodeListInterface n, FormatCommand cmd)
    
protected  FormatCommandspace()
     A Space command simply adds one or a user-specified number of spaces between tokens.
protected  FormatCommandspace(int i)
    
public  voidvisit(NodeToken n)
     Executes the commands waiting in the command queue, then inserts the proper location information into the current NodeToken. If there are any special tokens preceding this token, they will be given the current location information.
public  voidvisit(ProgramFile n)
    
public  voidvisit(Program n)
    
public  voidvisit(EvaluationUnit n)
    
public  voidvisit(ScopeBlock n)
    
public  voidvisit(VariableDeclarationBlock n)
    
public  voidvisit(ExpressionBlock n)
    
public  voidvisit(ThrowBlock n)
    
public  voidvisit(ImportBlock n)
    
public  voidvisit(MixinBlock n)
    
public  voidvisit(EvalBlock n)
    
public  voidvisit(VariableDeclaration n)
    
public  voidvisit(FunctionDeclaration n)
    
public  voidvisit(Arglist n)
    
public  voidvisit(TryStatement n)
    
public  voidvisit(ForLoopStatement n)
    
public  voidvisit(CollectionForLoopStatement n)
    
public  voidvisit(PreLoopStatement n)
    
public  voidvisit(WhileLoopStatement n)
    
public  voidvisit(ConditionalStatement n)
    
public  voidvisit(SynchronizedStatement n)
    
public  voidvisit(ReturnStatement n)
    
public  voidvisit(BreakStatement n)
    
public  voidvisit(ContinueStatement n)
    
public  voidvisit(Expression n)
    
public  voidvisit(FunctionCallExpressionList n)
    
public  voidvisit(FunctionCallExpressionListBody n)
    
public  voidvisit(AssignmentExpression n)
    
public  voidvisit(ConditionalExpression n)
    
public  voidvisit(LogicalOrExpression n)
    
public  voidvisit(LogicalAndExpression n)
    
public  voidvisit(BitwiseOrExpression n)
    
public  voidvisit(BitwiseXorExpression n)
    
public  voidvisit(BitwiseAndExpression n)
    
public  voidvisit(EqualityExpression n)
    
public  voidvisit(RelationalExpression n)
    
public  voidvisit(ShiftExpression n)
    
public  voidvisit(AdditiveExpression n)
    
public  voidvisit(MultiplicativeExpression n)
    
public  voidvisit(UnaryExpression n)
    
public  voidvisit(PostfixExpression n)
    
public  voidvisit(TypeExpression n)
    
public  voidvisit(AllocationExpression n)
    
public  voidvisit(CastExpression n)
    
public  voidvisit(PrimaryExpression n)
    
public  voidvisit(PrimaryExpressionNotFunction n)
    
public  voidvisit(PrimaryExpressionWithTrailingFxnCallExpList n)
    
public  voidvisit(PrimaryPrefix n)
    
public  voidvisit(PrimaryPrefixNotFunction n)
    
public  voidvisit(ThisPrimaryPrefix n)
    
public  voidvisit(SuperPrimaryPrefix n)
    
public  voidvisit(CalleePrimaryPrefix n)
    
public  voidvisit(IdentifierPrimaryPrefix n)
    
public  voidvisit(ParenPrimaryPrefix n)
    
public  voidvisit(FunctionPrimaryPrefix n)
    
public  voidvisit(ShorthandFunctionPrimaryPrefix n)
    
public  voidvisit(ArrayDeclarationPrimaryPrefix n)
    
public  voidvisit(PrimaryPostfix n)
    
public  voidvisit(PrimaryPostfixWithTrailingFxnCallExpList n)
    
public  voidvisit(FunctionCallPrimaryPostfix n)
    
public  voidvisit(ArraySubscriptPrimaryPostfix n)
    
public  voidvisit(PropertyIdentifierPrimaryPostfix n)
    
public  voidvisit(ThisScopeQualifierPrimaryPostfix n)
    
public  voidvisit(Literal n)
    
public  voidvisit(Permissions n)
    


Constructor Detail
TreeFormatter
public TreeFormatter()(Code)
The default constructor assumes an indentation amount of 3 spaces and no line-wrap. You may alternately use the other constructor to specify your own indentation amount and line width.



TreeFormatter
public TreeFormatter(int indentAmt, int wrapWidth)(Code)
This constructor accepts an indent amount and a line width which is used to wrap long lines. If a token's beginColumn value is greater than the specified wrapWidth, it will be moved to the next line and indented one extra level. To turn off line-wrapping, specify a wrapWidth of 0.
Parameters:
  indentAmt - Amount of spaces per indentation level.
Parameters:
  wrapWidth - Wrap lines longer than wrapWidth. 0 for no wrap.




Method Detail
add
protected void add(FormatCommand cmd)(Code)
Use this method to add FormatCommands to the command queue to be executed when the next token in the tree is visited.



force
protected FormatCommand force()(Code)
A Force command inserts a line break and indents the next line to the current indentation level. Use "add(force());".



force
protected FormatCommand force(int i)(Code)



indent
protected FormatCommand indent()(Code)
An Indent command increases the indentation level by one (or a user-specified amount). Use "add(indent());".



indent
protected FormatCommand indent(int i)(Code)



outdent
protected FormatCommand outdent()(Code)
An Outdent command is the reverse of the Indent command: it reduces the indentation level. Use "add(outdent());".



outdent
protected FormatCommand outdent(int i)(Code)



processList
protected void processList(NodeListInterface n)(Code)
Accepts a NodeListInterface object and performs an optional format command between each node in the list (but not after the last node).



processList
protected void processList(NodeListInterface n, FormatCommand cmd)(Code)



space
protected FormatCommand space()(Code)
A Space command simply adds one or a user-specified number of spaces between tokens. Use "add(space());".



space
protected FormatCommand space(int i)(Code)



visit
public void visit(NodeToken n)(Code)
Executes the commands waiting in the command queue, then inserts the proper location information into the current NodeToken. If there are any special tokens preceding this token, they will be given the current location information. The token will follow on the next line, at the proper indentation level. If this is not the behavior you want from special tokens, feel free to modify this method.



visit
public void visit(ProgramFile n)(Code)
 f0 -> ( <UNIX_SELF_EXECUTABLE_COMMENT> )?
 f1 -> Program(false)
 f2 -> <EOF>
 



visit
public void visit(Program n)(Code)
 f0 -> ( EvaluationUnit() )*
 



visit
public void visit(EvaluationUnit n)(Code)
 f0 -> ScopeBlock()
 | VariableDeclarationBlock()
 | FunctionDeclaration()
 | TryStatement()
 | ForLoopStatement()
 | CollectionForLoopStatement()
 | WhileLoopStatement()
 | ConditionalStatement()
 | SynchronizedStatement()
 | ReturnStatement()
 | BreakStatement()
 | ContinueStatement()
 | ExpressionBlock()
 | ThrowBlock()
 | ImportBlock()
 | MixinBlock()
 | EvalBlock()
 



visit
public void visit(ScopeBlock n)(Code)
 f0 -> "{"
 f1 -> Program(false)
 f2 -> "}"
 



visit
public void visit(VariableDeclarationBlock n)(Code)
 f0 -> VariableDeclaration()
 f1 -> ";"
 



visit
public void visit(ExpressionBlock n)(Code)
 f0 -> Expression()
 f1 -> ";"
 



visit
public void visit(ThrowBlock n)(Code)
 f0 -> "throw"
 f1 -> Expression()
 f2 -> ";"
 



visit
public void visit(ImportBlock n)(Code)
 f0 -> "import"
 f1 -> Expression()
 f2 -> ";"
 



visit
public void visit(MixinBlock n)(Code)
 f0 -> "mixin"
 f1 -> Expression()
 f2 -> ";"
 



visit
public void visit(EvalBlock n)(Code)
 f0 -> "eval"
 f1 -> Expression()
 f2 -> ";"
 



visit
public void visit(VariableDeclaration n)(Code)
 f0 -> Permissions(true)
 f1 -> "var"
 f2 -> <IDENTIFIER>
 f3 -> ( "=" Expression() )?
 



visit
public void visit(FunctionDeclaration n)(Code)
 f0 -> Permissions(true)
 f1 -> "function"
 f2 -> <IDENTIFIER>
 f3 -> "("
 f4 -> ( Arglist() )?
 f5 -> ")"
 f6 -> ( "extends" PrimaryExpressionWithTrailingFxnCallExpList() FunctionCallExpressionList() )?
 f7 -> "{"
 f8 -> Program(true)
 f9 -> "}"
 



visit
public void visit(Arglist n)(Code)
 f0 -> Permissions(false)
 f1 -> <IDENTIFIER>
 f2 -> ( "," Permissions(false) <IDENTIFIER> )*
 f3 -> ( "..." )?
 



visit
public void visit(TryStatement n)(Code)
 f0 -> "try"
 f1 -> EvaluationUnit()
 f2 -> ( "catch" "(" Expression() <IDENTIFIER> ")" EvaluationUnit() )*
 f3 -> ( "catch" "(" <IDENTIFIER> ")" EvaluationUnit() )?
 f4 -> ( "finally" EvaluationUnit() )?
 



visit
public void visit(ForLoopStatement n)(Code)
 f0 -> "for"
 f1 -> "("
 f2 -> (  PreLoopStatement() )?
 f3 -> ";"
 f4 -> ( Expression() )?
 f5 -> ";"
 f6 -> ( Expression() )?
 f7 -> ")"
 f8 -> EvaluationUnit()
 



visit
public void visit(CollectionForLoopStatement n)(Code)
 f0 -> "for"
 f1 -> "("
 f2 -> PreLoopStatement()
 f3 -> ":"
 f4 -> Expression()
 f5 -> ")"
 f6 -> EvaluationUnit()
 



visit
public void visit(PreLoopStatement n)(Code)
 f0 -> VariableDeclaration()
 | Expression()
 



visit
public void visit(WhileLoopStatement n)(Code)
 f0 -> "while"
 f1 -> "("
 f2 -> Expression()
 f3 -> ")"
 f4 -> EvaluationUnit()
 



visit
public void visit(ConditionalStatement n)(Code)
 f0 -> "if"
 f1 -> "("
 f2 -> Expression()
 f3 -> ")"
 f4 -> EvaluationUnit()
 f5 -> ( "else" EvaluationUnit() )?
 



visit
public void visit(SynchronizedStatement n)(Code)
 f0 -> "synchronized"
 f1 -> "("
 f2 -> Expression()
 f3 -> ")"
 f4 -> EvaluationUnit()
 



visit
public void visit(ReturnStatement n)(Code)
 f0 -> "return"
 f1 -> ( Expression() )?
 f2 -> ";"
 



visit
public void visit(BreakStatement n)(Code)
 f0 -> "break"
 f1 -> ";"
 



visit
public void visit(ContinueStatement n)(Code)
 f0 -> "continue"
 f1 -> ";"
 



visit
public void visit(Expression n)(Code)
 f0 -> AssignmentExpression()
 f1 -> ( "," AssignmentExpression() )*
 



visit
public void visit(FunctionCallExpressionList n)(Code)
 f0 -> "("
 f1 -> ( FunctionCallExpressionListBody() )?
 f2 -> ")"
 



visit
public void visit(FunctionCallExpressionListBody n)(Code)
 f0 -> AssignmentExpression()
 f1 -> ( "," AssignmentExpression() )*
 



visit
public void visit(AssignmentExpression n)(Code)
 f0 -> ConditionalExpression()
 f1 -> ( ( "=" | "+=" | "-=" | "*=" | "/=" | "%=" | ">>=" | "<<=" | ">>>=" | "&=" | "^=" | "|=" ) ConditionalExpression() )*
 



visit
public void visit(ConditionalExpression n)(Code)
 f0 -> LogicalOrExpression()
 f1 -> ( "?" LogicalOrExpression() ":" LogicalOrExpression() )?
 



visit
public void visit(LogicalOrExpression n)(Code)
 f0 -> LogicalAndExpression()
 f1 -> ( "||" LogicalAndExpression() )*
 



visit
public void visit(LogicalAndExpression n)(Code)
 f0 -> BitwiseOrExpression()
 f1 -> ( "&&" BitwiseOrExpression() )*
 



visit
public void visit(BitwiseOrExpression n)(Code)
 f0 -> BitwiseXorExpression()
 f1 -> ( "|" BitwiseXorExpression() )*
 



visit
public void visit(BitwiseXorExpression n)(Code)
 f0 -> BitwiseAndExpression()
 f1 -> ( "^" BitwiseAndExpression() )*
 



visit
public void visit(BitwiseAndExpression n)(Code)
 f0 -> EqualityExpression()
 f1 -> ( "&" EqualityExpression() )*
 



visit
public void visit(EqualityExpression n)(Code)
 f0 -> RelationalExpression()
 f1 -> ( ( "==" | "!=" ) RelationalExpression() )*
 



visit
public void visit(RelationalExpression n)(Code)
 f0 -> ShiftExpression()
 f1 -> ( ( "<" | ">" | ">=" | "<=" | "instanceof" ) ShiftExpression() )*
 



visit
public void visit(ShiftExpression n)(Code)
 f0 -> AdditiveExpression()
 f1 -> ( ( "<<" | ">>" | ">>>" ) AdditiveExpression() )*
 



visit
public void visit(AdditiveExpression n)(Code)
 f0 -> MultiplicativeExpression()
 f1 -> ( ( "+" | "-" ) MultiplicativeExpression() )*
 



visit
public void visit(MultiplicativeExpression n)(Code)
 f0 -> UnaryExpression()
 f1 -> ( ( "*" | "/" | "%" ) UnaryExpression() )*
 



visit
public void visit(UnaryExpression n)(Code)
 f0 -> ( ( "++" | "--" | "+" | "-" | "~" | "!" ) )?
 f1 -> PostfixExpression()
 



visit
public void visit(PostfixExpression n)(Code)
 f0 -> TypeExpression()
 f1 -> ( "++" | "--" )?
 



visit
public void visit(TypeExpression n)(Code)
 f0 -> AllocationExpression()
 | CastExpression()
 | PrimaryExpression()
 



visit
public void visit(AllocationExpression n)(Code)
 f0 -> "new"
 f1 -> PrimaryExpressionWithTrailingFxnCallExpList()
 f2 -> FunctionCallExpressionList()
 



visit
public void visit(CastExpression n)(Code)
 f0 -> "("
 f1 -> PrimaryExpressionNotFunction()
 f2 -> ")"
 f3 -> PrimaryExpression()
 



visit
public void visit(PrimaryExpression n)(Code)
 f0 -> PrimaryPrefix()
 f1 -> ( PrimaryPostfix() )*
 



visit
public void visit(PrimaryExpressionNotFunction n)(Code)
 f0 -> PrimaryPrefixNotFunction()
 f1 -> ( PrimaryPostfix() )*
 



visit
public void visit(PrimaryExpressionWithTrailingFxnCallExpList n)(Code)
 f0 -> PrimaryPrefix()
 f1 -> ( PrimaryPostfixWithTrailingFxnCallExpList() )*
 



visit
public void visit(PrimaryPrefix n)(Code)
 f0 -> PrimaryPrefixNotFunction()
 | FunctionPrimaryPrefix()
 | ShorthandFunctionPrimaryPrefix()
 



visit
public void visit(PrimaryPrefixNotFunction n)(Code)
 f0 -> ThisPrimaryPrefix()
 | SuperPrimaryPrefix()
 | CalleePrimaryPrefix()
 | ArrayDeclarationPrimaryPrefix()
 | IdentifierPrimaryPrefix()
 | ParenPrimaryPrefix()
 | Literal()
 



visit
public void visit(ThisPrimaryPrefix n)(Code)
 f0 -> "this"
 



visit
public void visit(SuperPrimaryPrefix n)(Code)
 f0 -> "super"
 



visit
public void visit(CalleePrimaryPrefix n)(Code)
 f0 -> "callee"
 



visit
public void visit(IdentifierPrimaryPrefix n)(Code)
 f0 -> <IDENTIFIER>
 



visit
public void visit(ParenPrimaryPrefix n)(Code)
 f0 -> "("
 f1 -> Expression()
 f2 -> ")"
 



visit
public void visit(FunctionPrimaryPrefix n)(Code)
 f0 -> "function"
 f1 -> "("
 f2 -> ( Arglist() )?
 f3 -> ")"
 f4 -> ( "extends" PrimaryExpressionWithTrailingFxnCallExpList() FunctionCallExpressionList() )?
 f5 -> "{"
 f6 -> Program(true)
 f7 -> "}"
 



visit
public void visit(ShorthandFunctionPrimaryPrefix n)(Code)
 f0 -> "'{"
 f1 -> Program(true)
 f2 -> "}"
 



visit
public void visit(ArrayDeclarationPrimaryPrefix n)(Code)
 f0 -> "["
 f1 -> ( FunctionCallExpressionListBody() )?
 f2 -> "]"
 



visit
public void visit(PrimaryPostfix n)(Code)
 f0 -> FunctionCallPrimaryPostfix()
 | ArraySubscriptPrimaryPostfix()
 | ThisScopeQualifierPrimaryPostfix()
 | PropertyIdentifierPrimaryPostfix()
 



visit
public void visit(PrimaryPostfixWithTrailingFxnCallExpList n)(Code)
 f0 -> ArraySubscriptPrimaryPostfix()
 | ThisScopeQualifierPrimaryPostfix()
 | PropertyIdentifierPrimaryPostfix()
 



visit
public void visit(FunctionCallPrimaryPostfix n)(Code)
 f0 -> FunctionCallExpressionList()
 



visit
public void visit(ArraySubscriptPrimaryPostfix n)(Code)
 f0 -> "["
 f1 -> Expression()
 f2 -> ( ".." Expression() )?
 f3 -> "]"
 



visit
public void visit(PropertyIdentifierPrimaryPostfix n)(Code)
 f0 -> "."
 f1 -> <IDENTIFIER>
 



visit
public void visit(ThisScopeQualifierPrimaryPostfix n)(Code)
 f0 -> "."
 f1 -> "this"
 



visit
public void visit(Literal n)(Code)
 f0 -> <INTEGER_LITERAL>
 | <FLOATING_POINT_LITERAL>
 | <STRING_LITERAL>
 | <REGEXP_LITERAL>
 | "true"
 | "false"
 | "null"
 | "undefined"
 



visit
public void visit(Permissions n)(Code)
 f0 -> ( "static" | "const" | "private" | "protected" | "public" )*
 



Methods inherited from oscript.visitor.DepthFirstVisitor
public void visit(NodeList n)(Code)(Java Doc)
public void visit(NodeListOptional n)(Code)(Java Doc)
public void visit(NodeOptional n)(Code)(Java Doc)
public void visit(NodeSequence n)(Code)(Java Doc)
public void visit(NodeToken n)(Code)(Java Doc)
public void visit(ProgramFile n)(Code)(Java Doc)
public void visit(Program n)(Code)(Java Doc)
public void visit(EvaluationUnit n)(Code)(Java Doc)
public void visit(ScopeBlock n)(Code)(Java Doc)
public void visit(VariableDeclarationBlock n)(Code)(Java Doc)
public void visit(ExpressionBlock n)(Code)(Java Doc)
public void visit(ThrowBlock n)(Code)(Java Doc)
public void visit(ImportBlock n)(Code)(Java Doc)
public void visit(MixinBlock n)(Code)(Java Doc)
public void visit(EvalBlock n)(Code)(Java Doc)
public void visit(VariableDeclaration n)(Code)(Java Doc)
public void visit(FunctionDeclaration n)(Code)(Java Doc)
public void visit(Arglist n)(Code)(Java Doc)
public void visit(TryStatement n)(Code)(Java Doc)
public void visit(ForLoopStatement n)(Code)(Java Doc)
public void visit(CollectionForLoopStatement n)(Code)(Java Doc)
public void visit(PreLoopStatement n)(Code)(Java Doc)
public void visit(WhileLoopStatement n)(Code)(Java Doc)
public void visit(ConditionalStatement n)(Code)(Java Doc)
public void visit(SynchronizedStatement n)(Code)(Java Doc)
public void visit(ReturnStatement n)(Code)(Java Doc)
public void visit(BreakStatement n)(Code)(Java Doc)
public void visit(ContinueStatement n)(Code)(Java Doc)
public void visit(Expression n)(Code)(Java Doc)
public void visit(FunctionCallExpressionList n)(Code)(Java Doc)
public void visit(FunctionCallExpressionListBody n)(Code)(Java Doc)
public void visit(AssignmentExpression n)(Code)(Java Doc)
public void visit(ConditionalExpression n)(Code)(Java Doc)
public void visit(LogicalOrExpression n)(Code)(Java Doc)
public void visit(LogicalAndExpression n)(Code)(Java Doc)
public void visit(BitwiseOrExpression n)(Code)(Java Doc)
public void visit(BitwiseXorExpression n)(Code)(Java Doc)
public void visit(BitwiseAndExpression n)(Code)(Java Doc)
public void visit(EqualityExpression n)(Code)(Java Doc)
public void visit(RelationalExpression n)(Code)(Java Doc)
public void visit(ShiftExpression n)(Code)(Java Doc)
public void visit(AdditiveExpression n)(Code)(Java Doc)
public void visit(MultiplicativeExpression n)(Code)(Java Doc)
public void visit(UnaryExpression n)(Code)(Java Doc)
public void visit(PostfixExpression n)(Code)(Java Doc)
public void visit(TypeExpression n)(Code)(Java Doc)
public void visit(AllocationExpression n)(Code)(Java Doc)
public void visit(CastExpression n)(Code)(Java Doc)
public void visit(PrimaryExpression n)(Code)(Java Doc)
public void visit(PrimaryExpressionNotFunction n)(Code)(Java Doc)
public void visit(PrimaryExpressionWithTrailingFxnCallExpList n)(Code)(Java Doc)
public void visit(PrimaryPrefix n)(Code)(Java Doc)
public void visit(PrimaryPrefixNotFunction n)(Code)(Java Doc)
public void visit(ThisPrimaryPrefix n)(Code)(Java Doc)
public void visit(SuperPrimaryPrefix n)(Code)(Java Doc)
public void visit(CalleePrimaryPrefix n)(Code)(Java Doc)
public void visit(IdentifierPrimaryPrefix n)(Code)(Java Doc)
public void visit(ParenPrimaryPrefix n)(Code)(Java Doc)
public void visit(FunctionPrimaryPrefix n)(Code)(Java Doc)
public void visit(ShorthandFunctionPrimaryPrefix n)(Code)(Java Doc)
public void visit(ArrayDeclarationPrimaryPrefix n)(Code)(Java Doc)
public void visit(PrimaryPostfix n)(Code)(Java Doc)
public void visit(PrimaryPostfixWithTrailingFxnCallExpList n)(Code)(Java Doc)
public void visit(FunctionCallPrimaryPostfix n)(Code)(Java Doc)
public void visit(ArraySubscriptPrimaryPostfix n)(Code)(Java Doc)
public void visit(PropertyIdentifierPrimaryPostfix n)(Code)(Java Doc)
public void visit(ThisScopeQualifierPrimaryPostfix n)(Code)(Java Doc)
public void visit(Literal n)(Code)(Java Doc)
public void visit(Permissions n)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.