Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Flags: --strong-mode | |
| 6 | |
| 7 (function NoSloppyEquality() { | |
| 8 assertThrows("'use strong'; 0 == 0", SyntaxError); | |
| 9 assertThrows("'use strong'; 0 != 0", SyntaxError); | |
| 10 assertThrows("function f() { 'use strong'; 0 == 0 }", SyntaxError); | |
| 11 assertThrows("function f() { 'use strong'; 0 != 0 }", SyntaxError); | |
| 12 assertTrue(eval("function f() { 'use strong' } 0 == 0")); | |
| 13 assertTrue(eval("function f() { 'use strong' } 0 != 1")); | |
|
marja
2015/02/12 09:59:37
Some of these could theoretically be parser sync t
| |
| 14 })(); | |
| OLD | NEW |