aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/bestPractice/Sbp_A10_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/bestPractice/Sbp_A10_T1.js')
-rw-r--r--test/suite/bestPractice/Sbp_A10_T1.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/test/suite/bestPractice/Sbp_A10_T1.js b/test/suite/bestPractice/Sbp_A10_T1.js
index 76647e724..d12572491 100644
--- a/test/suite/bestPractice/Sbp_A10_T1.js
+++ b/test/suite/bestPractice/Sbp_A10_T1.js
@@ -1,13 +1,12 @@
// Copyright 2011 Google Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * @path bestPractice/Sbp_A10_T1.js
- * @description Built-in functions should not have a non-deletable,
- * non-poisoned "caller" property.
- * @bestPractice
- * http://wiki.ecmascript.org/doku.php?id=conventions:make_non-standard_properties_configurable
- */
+/*---
+description: >
+ Built-in functions should not have a non-deletable, non-poisoned
+ "caller" property.
+bestPractice: "http://wiki.ecmascript.org/doku.php?id=conventions:make_non-standard_properties_configurable"
+---*/
(function() {
var map = Array.prototype.map;
@@ -43,4 +42,4 @@
$ERROR('#2: Built-in revealed caller');
}
$ERROR('#3: Unexpected "caller": ' + caller);
-})(); \ No newline at end of file
+})();