| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Flags: --strong-mode | 5 // Flags: --strong-mode |
| 6 | 6 |
| 7 (function NoSloppyEquality() { | 7 (function NoSloppyEquality() { |
| 8 assertThrows("'use strong'; 0 == 0", SyntaxError); | 8 assertThrows("'use strong'; 0 == 0", SyntaxError); |
| 9 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")); | |
| 14 })(); | 10 })(); |
| OLD | NEW |