Java Doc for Expression.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) 


java.lang.Object
   gnu.mapping.PropertySet
      gnu.mapping.Procedure
         gnu.mapping.Procedure0
            gnu.expr.Expression

All known Subclasses:   gnu.expr.LangExp,  gnu.expr.ExitExp,  gnu.expr.BlockExp,  gnu.expr.QuoteExp,  gnu.expr.ScopeExp,  gnu.expr.ErrorExp,  gnu.expr.TryExp,  gnu.expr.AccessExp,  gnu.expr.SynchronizedExp,  gnu.expr.ApplyExp,  gnu.expr.IfExp,  gnu.expr.BeginExp,
Expression
abstract public class Expression extends Procedure0 implements Printable,SourceLocator(Code)
Abstract class for syntactic forms that evaluate to a value. Scheme S-expressions get re-written to these before evaluation.
author:
   Per Bothner


Field Summary
final protected static  intNEXT_AVAIL_FLAG
    
 Stringfilename
    
protected  intflags
    
final public static  Expression[]noExpressions
    
 intposition
    


Method Summary
public  voidapply(CallContext ctx)
     Evaluate the expression. This is named apply rather than eval so it is compatible with the full-tail-call calling convention, and we can stash an Expression in CallContext's proc field.
final public  Objectapply0()
    
abstract public  voidcompile(Compilation comp, Target target)
    
final public  voidcompile(Compilation comp, Type type)
    
final public  voidcompile(Compilation comp, Declaration lhs)
     Compile an expression with checking suitable for a known Declaration. Leaves the result on the stack (i.e.
public static  voidcompileButFirst(Expression exp, Compilation comp)
     Compile all but the first sub-"statement". A kludge used for constructor methods, since if the first "statement" is a super-constructor we need to inject initializer expressions.
final public  voidcompileNotePosition(Compilation comp, Target target, Expression position)
     Compile, but take note of line number.
final public  voidcompileWithPosition(Compilation comp, Target target)
     Same as compile, but emit line number beforehard.
final public  voidcompileWithPosition(Compilation comp, Target target, Expression position)
     Same as 2-argument compileWithPosition, but use some other Expression's line number.
final public  Objecteval(CallContext ctx)
    
final public  Objecteval(Environment env)
    
final public  intgetColumnNumber()
    
final public  StringgetFileName()
    
public  booleangetFlag(int flag)
    
public  intgetFlags()
    
final public  intgetLineNumber()
     Get the line number of (the start of) this Expression. The "first" line is line 1; unknown is -1.
public  StringgetPublicId()
    
public  StringgetSystemId()
    
public  TypegetType()
     Return the Type used to represent the values of this Expression.
public  Expressioninline(ApplyExp exp, InlineCalls walker, Declaration decl)
     Apply inlining transformations on a given ApplyExp.
public  booleanisStableSourceLocation()
    
public static  ExpressionmakeWhile(Object cond, Object body, Compilation parser)
     Helper method to create a `while' statement.
final public  intmatch0(CallContext ctx)
    
abstract protected  booleanmustCompile()
    
final public  voidprint(Consumer out)
    
abstract public  voidprint(OutPort ps)
    
public  voidprintLineColumn(OutPort out)
     Print line and column number if specified.
final public  voidsetFile(String filename)
    
public  voidsetFlag(boolean setting, int flag)
    
public  voidsetFlag(int flag)
    
final public  ExpressionsetLine(Expression old)
    
final public  voidsetLine(int lineno, int colno)
    
final public  voidsetLine(int lineno)
    
public  voidsetLine(Compilation comp)
     Set line number from current position in Compilation.
final public  voidsetLocation(SourceLocator location)
     Copies the current location.
public  booleanside_effects()
     True if evaluating may have side-effects.
public  StringtoString()
    
public  ObjectvalueIfConstant()
     Return value if it is constant, or null if non-constant or unknown.
protected  Expressionwalk(ExpWalker walker)
    
protected  voidwalkChildren(ExpWalker walker)
    

Field Detail
NEXT_AVAIL_FLAG
final protected static int NEXT_AVAIL_FLAG(Code)



filename
String filename(Code)



flags
protected int flags(Code)



noExpressions
final public static Expression[] noExpressions(Code)



position
int position(Code)





Method Detail
apply
public void apply(CallContext ctx) throws Throwable(Code)
Evaluate the expression. This is named apply rather than eval so it is compatible with the full-tail-call calling convention, and we can stash an Expression in CallContext's proc field. FIXME - are we making use of this?



apply0
final public Object apply0() throws Throwable(Code)



compile
abstract public void compile(Compilation comp, Target target)(Code)



compile
final public void compile(Compilation comp, Type type)(Code)



compile
final public void compile(Compilation comp, Declaration lhs)(Code)
Compile an expression with checking suitable for a known Declaration. Leaves the result on the stack (i.e. does not assign to the lhs). It does coerce the value to a suitable type for the lhs, and throw a hopefully-informative WrongType exception on failure.



compileButFirst
public static void compileButFirst(Expression exp, Compilation comp)(Code)
Compile all but the first sub-"statement". A kludge used for constructor methods, since if the first "statement" is a super-constructor we need to inject initializer expressions.



compileNotePosition
final public void compileNotePosition(Compilation comp, Target target, Expression position)(Code)
Compile, but take note of line number.



compileWithPosition
final public void compileWithPosition(Compilation comp, Target target)(Code)
Same as compile, but emit line number beforehard.



compileWithPosition
final public void compileWithPosition(Compilation comp, Target target, Expression position)(Code)
Same as 2-argument compileWithPosition, but use some other Expression's line number.



eval
final public Object eval(CallContext ctx) throws Throwable(Code)



eval
final public Object eval(Environment env) throws Throwable(Code)



getColumnNumber
final public int getColumnNumber()(Code)



getFileName
final public String getFileName()(Code)



getFlag
public boolean getFlag(int flag)(Code)



getFlags
public int getFlags()(Code)



getLineNumber
final public int getLineNumber()(Code)
Get the line number of (the start of) this Expression. The "first" line is line 1; unknown is -1.



getPublicId
public String getPublicId()(Code)



getSystemId
public String getSystemId()(Code)



getType
public Type getType()(Code)
Return the Type used to represent the values of this Expression.



inline
public Expression inline(ApplyExp exp, InlineCalls walker, Declaration decl)(Code)
Apply inlining transformations on a given ApplyExp. Assumes the ApplyExp's function is the this expression, or can be optimized to this expression.
Parameters:
  exp - an application whose function expression can be simplifiedto this expression.
Parameters:
  walker - the context for the current inlining pass
Parameters:
  decl - if non-null, a Declaration bound to this expression an Expression equivalent to te passed-in exp.



isStableSourceLocation
public boolean isStableSourceLocation()(Code)



makeWhile
public static Expression makeWhile(Object cond, Object body, Compilation parser)(Code)
Helper method to create a `while' statement.



match0
final public int match0(CallContext ctx)(Code)



mustCompile
abstract protected boolean mustCompile()(Code)



print
final public void print(Consumer out)(Code)



print
abstract public void print(OutPort ps)(Code)



printLineColumn
public void printLineColumn(OutPort out)(Code)
Print line and column number if specified. This is a helper routineintended for use by print(OutPort).



setFile
final public void setFile(String filename)(Code)



setFlag
public void setFlag(boolean setting, int flag)(Code)



setFlag
public void setFlag(int flag)(Code)



setLine
final public Expression setLine(Expression old)(Code)



setLine
final public void setLine(int lineno, int colno)(Code)



setLine
final public void setLine(int lineno)(Code)



setLine
public void setLine(Compilation comp)(Code)
Set line number from current position in Compilation.



setLocation
final public void setLocation(SourceLocator location)(Code)
Copies the current location.



side_effects
public boolean side_effects()(Code)
True if evaluating may have side-effects.



toString
public String toString()(Code)



valueIfConstant
public Object valueIfConstant()(Code)
Return value if it is constant, or null if non-constant or unknown.



walk
protected Expression walk(ExpWalker walker)(Code)



walkChildren
protected void walkChildren(ExpWalker walker)(Code)



Methods inherited from gnu.mapping.Procedure0
abstract public Object apply0() throws Throwable(Code)(Java Doc)
public Object apply1(Object arg1)(Code)(Java Doc)
public Object apply2(Object arg1, Object arg2)(Code)(Java Doc)
public Object apply3(Object arg1, Object arg2, Object arg3)(Code)(Java Doc)
public Object apply4(Object arg1, Object arg2, Object arg3, Object arg4)(Code)(Java Doc)
public Object applyN(Object[] args) throws Throwable(Code)(Java Doc)
public int numArgs()(Code)(Java Doc)

Methods inherited from gnu.mapping.Procedure
public void apply(CallContext ctx) throws Throwable(Code)(Java Doc)
public static void apply(Procedure proc, CallContext ctx) throws Throwable(Code)(Java Doc)
abstract public Object apply0() throws Throwable(Code)(Java Doc)
abstract public Object apply1(Object arg1) throws Throwable(Code)(Java Doc)
abstract public Object apply2(Object arg1, Object arg2) throws Throwable(Code)(Java Doc)
abstract public Object apply3(Object arg1, Object arg2, Object arg3) throws Throwable(Code)(Java Doc)
abstract public Object apply4(Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable(Code)(Java Doc)
abstract public Object applyN(Object[] args) throws Throwable(Code)(Java Doc)
public void check0(CallContext ctx)(Code)(Java Doc)
public void check1(Object arg1, CallContext ctx)(Code)(Java Doc)
public void check2(Object arg1, Object arg2, CallContext ctx)(Code)(Java Doc)
public void check3(Object arg1, Object arg2, Object arg3, CallContext ctx)(Code)(Java Doc)
public void check4(Object arg1, Object arg2, Object arg3, Object arg4, CallContext ctx)(Code)(Java Doc)
public static void checkArgCount(Procedure proc, int argCount)(Code)(Java Doc)
public void checkN(Object[] args, CallContext ctx)(Code)(Java Doc)
public Procedure getSetter()(Code)(Java Doc)
public String getSourceLocation()(Code)(Java Doc)
public int match0(CallContext ctx)(Code)(Java Doc)
public int match1(Object arg1, CallContext ctx)(Code)(Java Doc)
public int match2(Object arg1, Object arg2, CallContext ctx)(Code)(Java Doc)
public int match3(Object arg1, Object arg2, Object arg3, CallContext ctx)(Code)(Java Doc)
public int match4(Object arg1, Object arg2, Object arg3, Object arg4, CallContext ctx)(Code)(Java Doc)
public int matchN(Object[] args, CallContext ctx)(Code)(Java Doc)
final public int maxArgs()(Code)(Java Doc)
final public int minArgs()(Code)(Java Doc)
public int numArgs()(Code)(Java Doc)
public void set0(Object result) throws Throwable(Code)(Java Doc)
public void set1(Object arg1, Object value) throws Throwable(Code)(Java Doc)
public void setN(Object[] args) throws Throwable(Code)(Java Doc)
public void setSetter(Procedure setter)(Code)(Java Doc)
public void setSourceLocation(String file, int line)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from gnu.mapping.PropertySet
public String getName()(Code)(Java Doc)
public Object getProperty(Object key, Object defaultValue)(Code)(Java Doc)
public Object getSymbol()(Code)(Java Doc)
public Object removeProperty(Object key)(Code)(Java Doc)
final public void setName(String name)(Code)(Java Doc)
public synchronized void setProperty(Object key, Object value)(Code)(Java Doc)
public static Object[] setProperty(Object[] properties, Object key, Object value)(Code)(Java Doc)
final public void setSymbol(Object name)(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.