blob: 3a0ab843213cf712f3d1455a9974be666ecd401c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.10.4.1-4
description: RegExp - the SyntaxError is not thrown when flags is 'gim'
---*/
var regExpObj = new RegExp('abc', 'gim');
reportCompare(0, 0);
|