Uses of Class
edu.ksu.cis.projects.bogor.ast.ApplyExp

Packages that use ApplyExp
edu.ksu.cis.projects.bogor.ast Provides for Bogor input language AST. 
edu.ksu.cis.projects.bogor.ast.checker Provides for Bogor AST checker. 
edu.ksu.cis.projects.bogor.ast.transform   
edu.ksu.cis.projects.bogor.module Provide a generic framework for dataflow analysis on BIR transition systems. 
edu.ksu.cis.projects.bogor.parser Provides parser for Bogor input language. 
 

Uses of ApplyExp in edu.ksu.cis.projects.bogor.ast
 

Fields in edu.ksu.cis.projects.bogor.ast declared as ApplyExp
protected  ApplyExp InvokeAction.exp
           
 

Methods in edu.ksu.cis.projects.bogor.ast that return ApplyExp
 ApplyExp ApplyExp.clone()
          Clones this object (deep clone); including location info.
 ApplyExp InvokeAction.getExp()
           
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type ApplyExp
 void InvokeAction.setExp(ApplyExp newExp)
           
protected  void ASTVisitor.visitApplyExp(ApplyExp node)
           
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type ApplyExp
InvokeAction(ApplyExp exp)
           
 

Uses of ApplyExp in edu.ksu.cis.projects.bogor.ast.checker
 

Methods in edu.ksu.cis.projects.bogor.ast.checker with parameters of type ApplyExp
protected  void ConstIntExpEvaluator.ConstIntExpEnforcer.visitApplyExp(ApplyExp node)
           
protected  void ExpChecker.visitApplyExp(ApplyExp node)
          Type checks an apply exp.
protected  void LegalInitialValueChecker.visitApplyExp(ApplyExp node)
           
 

Uses of ApplyExp in edu.ksu.cis.projects.bogor.ast.transform
 

Methods in edu.ksu.cis.projects.bogor.ast.transform with parameters of type ApplyExp
protected  void HighToLowAtomicExpCompiler.visitApplyExp(ApplyExp node)
           
protected  void HighToLowAtomicExpCompiler.InvocationDetector.visitApplyExp(ApplyExp node)
           
protected  void HighToLowNonAtomicExpCompiler.visitApplyExp(ApplyExp node)
           
 

Uses of ApplyExp in edu.ksu.cis.projects.bogor.module
 

Methods in edu.ksu.cis.projects.bogor.module with parameters of type ApplyExp
protected  IValue DefaultExpEvaluator.evaluateApplyExp(ApplyExp e)
           
 

Uses of ApplyExp in edu.ksu.cis.projects.bogor.parser
 

Methods in edu.ksu.cis.projects.bogor.parser that return ApplyExp
 ApplyExp BogorParser.Apply()