GetCode() public method

public GetCode ( ) : String
return String
Example #1
0
 // this is the typical Lookup constructor. The context points to the identifier
 internal Lookup(Context context)
   : base(context, context.GetCode()){
   this.lexLevel = 0;
   this.evalLexLevel = 0;
   this.fieldLoc = null;
   this.refLoc = null;
   this.lateBinding = null;
   this.thereIsAnObjectOnTheStack = false;
 }
 internal Lookup(Context context) : base(context, context.GetCode())
 {
     this.lexLevel     = 0;
     this.evalLexLevel = 0;
     this.fieldLoc     = null;
     this.refLoc       = null;
     this.lateBinding  = null;
     this.thereIsAnObjectOnTheStack = false;
 }