diff options
Diffstat (limited to 'js/src/tests/test262/ch08/8.4/S8.4_A11.js')
-rw-r--r-- | js/src/tests/test262/ch08/8.4/S8.4_A11.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/tests/test262/ch08/8.4/S8.4_A11.js b/js/src/tests/test262/ch08/8.4/S8.4_A11.js new file mode 100644 index 000000000..8293382ec --- /dev/null +++ b/js/src/tests/test262/ch08/8.4/S8.4_A11.js @@ -0,0 +1,16 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/** + * Presence of reserved words in string literal are allowed + * + * @path ch08/8.4/S8.4_A11.js + * @description Create string variable, thet include all reserved words + */ + +////////////////////////////////////////////////////////////////////////////// +//CHECK#1 +var __delete=" break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof "; +// +////////////////////////////////////////////////////////////////////////////// + |