Uses of Class
sddl.syntax.node.TId

Packages that use TId
sddl.structure   
sddl.syntax.analysis   
sddl.syntax.node   
 

Uses of TId in sddl.structure
 

Methods in sddl.structure with parameters of type TId
 java.lang.Object Frame.getVar(TId id)
           
 void Frame.setVar(TId id, java.lang.Object value)
           
 boolean Frame.varExists(TId id)
           
 

Method parameters in sddl.structure with type arguments of type TId
 void MethodTable.add(AFunction definition, java.util.List<TId> params)
           
 

Uses of TId in sddl.syntax.analysis
 

Methods in sddl.syntax.analysis with parameters of type TId
 void AnalysisAdapter.caseTId(TId node)
           
 void Analysis.caseTId(TId node)
           
 

Uses of TId in sddl.syntax.node
 

Methods in sddl.syntax.node that return TId
 TId AVarTerm.getId()
           
 TId AStaticCallTerm.getId()
           
 TId APrimitive.getId()
           
 TId AOption.getId()
           
 TId AIdList.getId()
           
 TId AGetLeftUnaryExp.getId()
           
 TId AFunction.getId()
           
 TId AForStm.getId()
           
 TId ACoordLeftUnaryExp.getId()
           
 TId ACallRightExp.getId()
           
 TId AAssignStm.getId()
           
 TId AAdditionalId.getId()
           
 

Methods in sddl.syntax.node with parameters of type TId
 void AVarTerm.setId(TId node)
           
 void AStaticCallTerm.setId(TId node)
           
 void APrimitive.setId(TId node)
           
 void AOption.setId(TId node)
           
 void AIdList.setId(TId node)
           
 void AGetLeftUnaryExp.setId(TId node)
           
 void AFunction.setId(TId node)
           
 void AForStm.setId(TId node)
           
 void ACoordLeftUnaryExp.setId(TId node)
           
 void ACallRightExp.setId(TId node)
           
 void AAssignStm.setId(TId node)
           
 void AAdditionalId.setId(TId node)
           
 

Constructors in sddl.syntax.node with parameters of type TId
AAdditionalId(TComma _comma_, TId _id_)
           
AAssignStm(TId _id_, TAssign _assign_, PExp _exp_, TSc _sc_)
           
ACallRightExp(PRightExp _rightExp_, TDot _dot_, TId _id_, PArgList _argList_)
           
ACoordLeftUnaryExp(TCoordKwd _coordKwd_, TOfKwd _ofKwd_, TId _id_, PArgList _argList_, TInKwd _inKwd_, PLeftUnaryExp _leftUnaryExp_)
           
AForStm(TForKwd _forKwd_, TId _id_, TFromKwd _fromKwd_, PExp _lowBound_, TToKwd _toKwd_, PExp _upBound_, TDoKwd _doKwd_, java.util.List<PStm> _stms_, TEndKwd _endKwd_, TSc _sc_)
           
AFunction(TFunKwd _funKwd_, TId _id_, TLPar _lPar_, PIdList _idList_, TRPar _rPar_, TLBr _lBr_, java.util.List<PStm> _stms_, TRBr _rBr_)
           
AGetLeftUnaryExp(TGetKwd _getKwd_, TId _id_, TFromKwd _fromKwd_, PLeftUnaryExp _leftUnaryExp_)
           
AIdList(TId _id_, java.util.List<PAdditionalId> _additionalIds_)
           
AOption(TId _id_, TAssign _assign_, PExp _exp_)
           
APrimitive(TPrimitiveKwd _primitiveKwd_, TStaticKwd _staticKwd_, TId _id_, TString _className_, TString _funcName_, PSignature _signature_, TSc _sc_)
           
AStaticCallTerm(TId _id_, PArgList _argList_)
           
AVarTerm(TId _id_)