Changeset 228388 in webkit for trunk/Source/JavaScriptCore/runtime/RegExpObject.cpp
- Timestamp:
- Feb 12, 2018, 12:28:02 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/RegExpObject.cpp
r223645 r228388 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 * Copyright (C) 2003-201 7Apple Inc. All Rights Reserved.3 * Copyright (C) 2003-2018 Apple Inc. All Rights Reserved. 4 4 * 5 5 * This library is free software; you can redistribute it and/or … … 259 259 260 260 String s = string->value(exec); 261 RETURN_IF_EXCEPTION(scope, { }); 261 262 RegExpConstructor* regExpConstructor = globalObject->regExpConstructor(); 262 263 264 ASSERT(!s.isNull()); 263 265 if (regExp->unicode()) { 264 266 unsigned stringLength = s.length();
Note:
See TracChangeset
for help on using the changeset viewer.