gnu.expr

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 » Nice » gnu.expr 
gnu.expr
The gnu.expr Package Supports Expression, and various related classes need to compile programming languages.

The exact set of classes in this package is still somewhat in flux.

License

See the file COPYING.

Author

Per Bothner <per@bothner.com>

Bugs and patches

Send them to per@bothner.com, or to the Kawa mailing list.
Java Source File NameTypeComment
ApplyExp.javaClass This class is used to represent "combination" or "application".
BeginExp.javaClass This class represents a sequence of Expressions.
BindingInitializer.javaClass
BlockExp.javaClass Class used to implement a block that can be exited.
Branchable.javaInterface
CanInline.javaInterface Inline an application, at the Expression level.
CatchClause.javaClass A "catch" clause of a "try-catch" form.
ChainLambdas.javaClass Sets up the firstChild/nextSibling links of each LambdaExp.
CheckContract.javaClass Check that a precondition holds, and that the body leads to the postcondition to hold.
CheckedTarget.javaClass Same as StackTarget, but catch ClassCastException. Generate code so that if coercion fails, catch ClassCastException, and re-throw a WrongType.
ClassExp.javaClass
ClassInitializer.javaClass Cause a class value from a ClassExp to be initialized.
Compilation.javaClass
ConditionalTarget.javaClass This is the Target of a boolean expression, in a conditional context. If the expression evaluates to, transfer to the ifTrue label; if false, tranfer to the ifFalse label.
ConstructorExp.javaClass A constructor method.
ConsumerTarget.javaClass A Target which is some variable that implements gnu.lists.Consumer.
CopyArgument.javaClass Copy the value of a previous argument in the same function call.
Declaration.javaClass The static information associated with a local variable binding.

These are the kinds of Declaration we use:

A local variable that is not captured by an inner lambda is stored in a Java local variables slot (register).

ErrorExp.javaClass
ExitExp.javaClass Expression to exit a lexically surrounding block.
Expression.javaClass Abstract class for syntactic forms that evaluate to a value.
ExpWalker.javaClass Class for doing a tree-walk over an Expression tree.
FindCapturedVars.javaClass
FindTailCalls.javaClass Does setTailCall on ApplyExp's that are tail-calls. Also setCanRead, setCanCall, setCanWrite on Declarations and setCanRead, setCanCall on LambdaExp when appropriate.
FluidLetExp.javaClass Class used to implement "fluid-let" for Scheme and "let" for Emacs.
GenericProc.javaClass A collection of MethodProcs; one is chosen at apply time.
IfExp.javaClass This class represents a conditional.
IgnoreTarget.javaClass
IncrementExp.javaClass Pre/post incrementation of a local variable.
InitializeProc.javaClass Call one of the constructors of a class.
Initializer.javaClass A piece of code that needs to be added to , , or whatever.
Inlineable.javaInterface
InlineCalls.javaClass
InstantiateProc.javaClass Instantiate an object and call one of its constructors.
Interpreter.javaClass Contains various language-dependent methods. Also contains "global" state about the executation environment, such as the global Environment.
KawaConvert.javaClass Override gnu.lists.Convert to use Kawa number and Char classes.
Keyword.javaClass
LambdaExp.javaClass Class used to implement Scheme lambda expressions.
LetExp.javaClass Class used to implement "let" syntax (and variants) for Scheme.
Literal.javaClass A Literal contains compile-time information about a constant.
LitTable.javaClass Manages the literals of a Compilation. Implements ObjectOutput, because we use externalization to determine how literals get compiled into code that re-creates the literal.
LoopExp.javaClass A generic loop.
MemberLambdaExp.javaClass A LambdaExp member of a class (with a this argument).
ModuleBody.javaClass Abstract class for the dummy top-level function of a module.
ModuleExp.javaClass Class used to implement Scheme top-level environments.
ModuleMethod.javaClass Call a specified method in in a ModuleBody.
ObjectExp.javaClass
Package.javaClass A set of classes to generate as a java-like package.
PairClassType.javaClass A class type implemented as a pair of an interface and a class.
Parser.javaClass A very abstract "parser". Converts some input representation to Expression trees.
PrimProcedure.javaClass A primitive Procedure implemented by a plain Java method.
ProcInitializer.javaClass
PushApply.javaClass Re-arranges ApplyExp where the function is a LetExp or BeginExp. Optimizes ((let (...) body) .
QuoteExp.javaClass An Expression that evaluates to a constant value.
ReferenceExp.javaClass This class represents a variable reference (an identifier).
ScopeExp.javaClass Abstract class for expressions that add local variable bindings.
SeriesTarget.javaClass The value in the result (as a sequence of values) is passed to a function.
SetExp.javaClass An Expression to set (bind) or define a new value to a named variable.
SimpleIfExp.javaClass
Special.javaClass A class of special one-of-a-kind builtin values.
StackTarget.javaClass
Symbol.javaClass Utility class containing various routines to manipulate Scheme symbols. Note Scheme symbols are represented using java.lang.String objects, and there are no Symbol objects.
SynchronizedExp.javaClass
Target.javaClass This represents where a compiler can put the result of an expression.
ThisExp.javaClass Evaluates to the "this" implicit variable. This is currently neither robust nor general.
TryExp.javaClass This class represents try/catch/finally.
Undefined.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.