throw 语句
语法:
ThrowStatement : throw [no LineTerminator here] Expression ;
语义:
产生式 ThrowStatement : throw [no LineTerminator here] Expression ; 按照下面的过程执行 :
- 令 exprRef 为解释执行 Expression 的结果 .
- 返回 (throw, GetValue(exprRef), empty).
语法:
ThrowStatement : throw [no LineTerminator here] Expression ;
语义:
产生式 ThrowStatement : throw [no LineTerminator here] Expression ; 按照下面的过程执行 :