Java Doc for ScopeExp.java in  » Scripting » Kawa » gnu » expr » 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 » Kawa » gnu.expr 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


gnu.expr.Expression
   gnu.expr.ScopeExp

All known Subclasses:   gnu.expr.LambdaExp,  gnu.expr.CatchClause,  gnu.expr.LetExp,
ScopeExp
abstract public class ScopeExp extends Expression (Code)
Abstract class for expressions that add local variable bindings.
author:
   Per Bothner


Field Summary
static  intcounter
    
 Declarationdecls
    
protected  intframeSize
     Size of evalFrame to allocate in interpreter.
public  intid
     Unique id number, to ease print-outs and debugging.
 Declarationlast
    
public  ScopeExpouter
     The statically enclosing binding contour.

Constructor Summary
public  ScopeExp()
    

Method Summary
public  voidadd(Declaration decl)
    
public  voidadd(Declaration prev, Declaration decl)
     Add a Declaration at a specified position.
final public  DeclarationaddDeclaration(Object name)
     Create a new declaration in the current Scope.
final public  DeclarationaddDeclaration(Object name, Type type)
     Create a new declaration in the current Scope.
final public  voidaddDeclaration(Declaration decl)
     Add a Declaration to the current Scope.
public  intcountDecls()
    
public  LambdaExpcurrentLambda()
    
public  ModuleExpcurrentModule()
    
public static  voidduplicateDeclarationError(Declaration oldDecl, Declaration newDecl, Compilation comp)
    
public  DeclarationfirstDecl()
    
public  DeclarationgetDefine(Object name, char severity, Compilation parser)
     Add a new Declaration, with a message if there is an existing one.
public  DeclarationgetNoDefine(Object name)
     Lookup a declaration, create a non-defining declaration if needed.
public  ScopegetVarScope()
    
public  Declarationlookup(Object sym)
     Find a Declaration by name.
public  Declarationlookup(Object sym, Language language, int namespace)
    
public static  intnesting(ScopeExp sc)
    
public  voidpopScope(CodeAttr code)
     Clear bytecode resources for the ScopeExp.
public  voidremove(Declaration decl)
    
public  voidremove(Declaration prev, Declaration decl)
    
public  voidreplaceFollowing(Declaration prev, Declaration newDecl)
     Replace the prev.next by newDecl. If prev==null, replace the first decl.
protected  voidsetIndexes()
     Calculate offset and frameSize needed by interpreter.
public  StringtoString()
    
protected  Expressionwalk(ExpWalker walker)
    

Field Detail
counter
static int counter(Code)



decls
Declaration decls(Code)



frameSize
protected int frameSize(Code)
Size of evalFrame to allocate in interpreter.



id
public int id(Code)
Unique id number, to ease print-outs and debugging.



last
Declaration last(Code)



outer
public ScopeExp outer(Code)
The statically enclosing binding contour.




Constructor Detail
ScopeExp
public ScopeExp()(Code)




Method Detail
add
public void add(Declaration decl)(Code)



add
public void add(Declaration prev, Declaration decl)(Code)
Add a Declaration at a specified position.



addDeclaration
final public Declaration addDeclaration(Object name)(Code)
Create a new declaration in the current Scope.
Parameters:
  name - name (interned) to give to the new Declaration.



addDeclaration
final public Declaration addDeclaration(Object name, Type type)(Code)
Create a new declaration in the current Scope.
Parameters:
  name - name (interned) to give to the new Declaration.
Parameters:
  type - type of the new Declaration.



addDeclaration
final public void addDeclaration(Declaration decl)(Code)
Add a Declaration to the current Scope.



countDecls
public int countDecls()(Code)



currentLambda
public LambdaExp currentLambda()(Code)



currentModule
public ModuleExp currentModule()(Code)



duplicateDeclarationError
public static void duplicateDeclarationError(Declaration oldDecl, Declaration newDecl, Compilation comp)(Code)



firstDecl
public Declaration firstDecl()(Code)



getDefine
public Declaration getDefine(Object name, char severity, Compilation parser)(Code)
Add a new Declaration, with a message if there is an existing one.



getNoDefine
public Declaration getNoDefine(Object name)(Code)
Lookup a declaration, create a non-defining declaration if needed.



getVarScope
public Scope getVarScope()(Code)



lookup
public Declaration lookup(Object sym)(Code)
Find a Declaration by name.
Parameters:
  sym - the (interned) name of the Declaration sought the matching Declaration, if found; otherwise null



lookup
public Declaration lookup(Object sym, Language language, int namespace)(Code)



nesting
public static int nesting(ScopeExp sc)(Code)



popScope
public void popScope(CodeAttr code)(Code)
Clear bytecode resources for the ScopeExp. This potentially allows Kawa to generate code for the same (inlined, shared) ScopeExp multiple times - though we're not making use of that yet.



remove
public void remove(Declaration decl)(Code)



remove
public void remove(Declaration prev, Declaration decl)(Code)



replaceFollowing
public void replaceFollowing(Declaration prev, Declaration newDecl)(Code)
Replace the prev.next by newDecl. If prev==null, replace the first decl.



setIndexes
protected void setIndexes()(Code)
Calculate offset and frameSize needed by interpreter.



toString
public String toString()(Code)



walk
protected Expression walk(ExpWalker walker)(Code)



Fields inherited from gnu.expr.Expression
final protected static int NEXT_AVAIL_FLAG(Code)(Java Doc)
String filename(Code)(Java Doc)
protected int flags(Code)(Java Doc)
final public static Expression[] noExpressions(Code)(Java Doc)
int position(Code)(Java Doc)

Methods inherited from gnu.expr.Expression
public void apply(CallContext ctx) throws Throwable(Code)(Java Doc)
final public Object apply0() throws Throwable(Code)(Java Doc)
abstract public void compile(Compilation comp, Target target)(Code)(Java Doc)
final public void compile(Compilation comp, Type type)(Code)(Java Doc)
final public void compile(Compilation comp, Declaration lhs)(Code)(Java Doc)
public static void compileButFirst(Expression exp, Compilation comp)(Code)(Java Doc)
final public void compileNotePosition(Compilation comp, Target target, Expression position)(Code)(Java Doc)
final public void compileWithPosition(Compilation comp, Target target)(Code)(Java Doc)
final public void compileWithPosition(Compilation comp, Target target, Expression position)(Code)(Java Doc)
final public Object eval(CallContext ctx) throws Throwable(Code)(Java Doc)
final public Object eval(Environment env) throws Throwable(Code)(Java Doc)
final public int getColumnNumber()(Code)(Java Doc)
final public String getFileName()(Code)(Java Doc)
public boolean getFlag(int flag)(Code)(Java Doc)
public int getFlags()(Code)(Java Doc)
final public int getLineNumber()(Code)(Java Doc)
public String getPublicId()(Code)(Java Doc)
public String getSystemId()(Code)(Java Doc)
public Type getType()(Code)(Java Doc)
public Expression inline(ApplyExp exp, InlineCalls walker, Declaration decl)(Code)(Java Doc)
public boolean isStableSourceLocation()(Code)(Java Doc)
public static Expression makeWhile(Object cond, Object body, Compilation parser)(Code)(Java Doc)
final public int match0(CallContext ctx)(Code)(Java Doc)
abstract protected boolean mustCompile()(Code)(Java Doc)
final public void print(Consumer out)(Code)(Java Doc)
abstract public void print(OutPort ps)(Code)(Java Doc)
public void printLineColumn(OutPort out)(Code)(Java Doc)
final public void setFile(String filename)(Code)(Java Doc)
public void setFlag(boolean setting, int flag)(Code)(Java Doc)
public void setFlag(int flag)(Code)(Java Doc)
final public Expression setLine(Expression old)(Code)(Java Doc)
final public void setLine(int lineno, int colno)(Code)(Java Doc)
final public void setLine(int lineno)(Code)(Java Doc)
public void setLine(Compilation comp)(Code)(Java Doc)
final public void setLocation(SourceLocator location)(Code)(Java Doc)
public boolean side_effects()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public Object valueIfConstant()(Code)(Java Doc)
protected Expression walk(ExpWalker walker)(Code)(Java Doc)
protected void walkChildren(ExpWalker walker)(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.