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

Packages that use IntLiteral
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.parser Provides parser for Bogor input language. 
 

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

Methods in edu.ksu.cis.projects.bogor.ast that return IntLiteral
 IntLiteral IntLiteral.clone()
          Clones this object (deep clone); including location info.
 IntLiteral ASTIntRangeType.getHighLimit()
          Gets the high limit.
 IntLiteral ASTIntRangeType.getLowLimit()
          Gets the low limit.
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type IntLiteral
 void ASTIntRangeType.setHighLimit(IntLiteral newHighLimit)
          Sets the high limit.
 void ASTIntRangeType.setLowLimit(IntLiteral newLowLimit)
          Sets the low limit.
protected  void ASTVisitor.visitIntLiteral(IntLiteral node)
           
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type IntLiteral
ASTIntRangeType(IntLiteral lowLimit, IntLiteral highLimit, boolean wrap)
          Default constructor.
 

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

Methods in edu.ksu.cis.projects.bogor.ast.checker with parameters of type IntLiteral
protected  void ConstIntExpEvaluator.visitIntLiteral(IntLiteral node)
           
protected  void ConstIntExpEvaluator.ConstIntExpEnforcer.visitIntLiteral(IntLiteral node)
           
protected  void ExpChecker.visitIntLiteral(IntLiteral node)
          Type checks an integer literal.
 

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

Methods in edu.ksu.cis.projects.bogor.parser that return IntLiteral
 IntLiteral BogorParser.IntLiteral()
           
 IntLiteral BogorParser.OptionallySignedIntLiteral()