Comment out throw keyword

Exceptions are not going to be implemented soon.
master
Yury Kurlykov 2020-04-27 22:57:54 +10:00
parent dc7502aa57
commit 0a85994fae
Signed by: t1meshift
GPG Key ID: B133F3167ABF94D8
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,6 @@ Function: 'function';
This: 'this'; This: 'this';
Default: 'default'; Default: 'default';
If: 'if'; If: 'if';
Throw: 'throw';
Delete: 'delete'; Delete: 'delete';
In: 'in'; In: 'in';
As: 'as'; As: 'as';
@ -155,6 +154,7 @@ From: 'from';
//Debugger: 'debugger'; //Debugger: 'debugger';
//With: 'with'; //With: 'with';
//Try: 'try'; //Try: 'try';
//Throw: 'throw';
/// Future Reserved Words /// Future Reserved Words

View File

@ -471,7 +471,7 @@ keyword
// | With // | With
| Default | Default
| If | If
| Throw // | Throw
| Delete | Delete
| In | In
// | Try // | Try