mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
17 lines
644 B
JavaScript
17 lines
644 B
JavaScript
// 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 ";
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|