1// Copyright 2015 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'use strict'; 6 7let regexp = /x/g; 8 9regexp.lastIndex = -1; 10 11assertTrue(regexp.test("axb")); 12assertEquals(2, regexp.lastIndex); 13 14regexp.lastIndex = -1; 15 16assertEquals("x", regexp.exec("axb")[0]); 17assertEquals(2, regexp.lastIndex); 18