internal PostOrPrefixOperator(Context context, AST operand, PostOrPrefix operatorTok)
   : base(context, operand) {
   this.operatorMeth = null;
   this.operatorTok = operatorTok;
   this.metaData = null;
   this.type = null;
 }
 internal PostOrPrefixOperator(Context context, AST operand, PostOrPrefix operatorTok) : base(context, operand)
 {
     this.operatorMeth = null;
     this.operatorTok  = operatorTok;
     this.metaData     = null;
     this.type         = null;
 }
Ejemplo n.º 3
0
 public PostOrPrefixOperator(Context context, JSParser parser, AstNode operand, JSToken operatorToken, PostOrPrefix postOrPrefixOperator)
     : base(context, parser, operand, operatorToken)
 {
     m_postOrPrefixOperator = postOrPrefixOperator;
 }
Ejemplo n.º 4
0
 internal xpostorprefixoperator(PostOrPrefixOperator popo)
     : base(popo)
 {
     operatorTok = popo.operatorTok;
 }