示例#1
0
 public CatchClause(ArrayPatternElement param, BlockStatement body)
 {
     Type  = Nodes.CatchClause;
     Param = param;
     Body  = body;
 }
示例#2
0
 public VariableDeclarator(ArrayPatternElement id, Expression init)
 {
     Type = Nodes.VariableDeclarator;
     Id   = id;
     Init = init;
 }