📄 regexp-delay.js.svn-base
字号:
// Copyright 2006-2008 the V8 project authors. All rights reserved.// Redistribution and use in source and binary forms, with or without// modification, are permitted provided that the following conditions are// met://// * Redistributions of source code must retain the above copyright// notice, this list of conditions and the following disclaimer.// * Redistributions in binary form must reproduce the above// copyright notice, this list of conditions and the following// disclaimer in the documentation and/or other materials provided// with the distribution.// * Neither the name of Google Inc. nor the names of its// contributors may be used to endorse or promote products derived// from this software without specific prior written permission.//// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.// Expect $Object = global.Object;// Expect $Array = global.Array;const $RegExp = global.RegExp;// A recursive descent parser for Patterns according to the grammar of// ECMA-262 15.10.1, with deviations noted below.function DoConstructRegExp(object, pattern, flags, isConstructorCall) { // RegExp : Called as constructor; see ECMA-262, section 15.10.4. if (IS_REGEXP(pattern)) { if (!IS_UNDEFINED(flags)) { throw MakeTypeError('regexp_flags', []); } flags = (pattern.global ? 'g' : '') + (pattern.ignoreCase ? 'i' : '') + (pattern.multiline ? 'm' : ''); pattern = pattern.source; } pattern = IS_UNDEFINED(pattern) ? '' : ToString(pattern); flags = IS_UNDEFINED(flags) ? '' : ToString(flags); var global = false; var ignoreCase = false; var multiline = false; for (var i = 0; i < flags.length; i++) { var c = flags.charAt(i); switch (c) { case 'g': if (global) throw MakeSyntaxError('duplicate_regexp_flag', ['g']); global = true; break; case 'i': if (ignoreCase) throw MakeSyntaxError('duplicate_regexp_flag', ['i']); ignoreCase = true; break; case 'm': if (multiline) throw MakeSyntaxError('duplicate_regexp_flag', ['m']); multiline = true; break; default: // Ignore flags that have no meaning to be consistent with // KJS. break; } } if (isConstructorCall) { // ECMA-262, section 15.10.7.1. %SetProperty(object, 'source', pattern, DONT_DELETE | READ_ONLY | DONT_ENUM); // ECMA-262, section 15.10.7.2. %SetProperty(object, 'global', global, DONT_DELETE | READ_ONLY | DONT_ENUM); // ECMA-262, section 15.10.7.3. %SetProperty(object, 'ignoreCase', ignoreCase, DONT_DELETE | READ_ONLY | DONT_ENUM); // ECMA-262, section 15.10.7.4. %SetProperty(object, 'multiline', multiline, DONT_DELETE | READ_ONLY | DONT_ENUM); // ECMA-262, section 15.10.7.5. %SetProperty(object, 'lastIndex', 0, DONT_DELETE | DONT_ENUM); } else { // RegExp is being recompiled via RegExp.prototype.compile. %IgnoreAttributesAndSetProperty(object, 'source', pattern); %IgnoreAttributesAndSetProperty(object, 'global', global); %IgnoreAttributesAndSetProperty(object, 'ignoreCase', ignoreCase); %IgnoreAttributesAndSetProperty(object, 'multiline', multiline); %IgnoreAttributesAndSetProperty(object, 'lastIndex', 0); } // Call internal function to compile the pattern. %RegExpCompile(object, pattern, flags);};function RegExpConstructor(pattern, flags) { if (%IsConstructCall()) { DoConstructRegExp(this, pattern, flags, true); } else { // RegExp : Called as function; see ECMA-262, section 15.10.3.1. if (IS_REGEXP(pattern) && IS_UNDEFINED(flags)) { return pattern; } return new $RegExp(pattern, flags); }};// Deprecated RegExp.prototype.compile method. We behave like the constructor// were called again. In SpiderMonkey, this method returns the regexp object.// In KJS, it returns undefined. For compatibility with KJS, we match their// behavior.function CompileRegExp(pattern, flags) { // Both KJS and SpiderMonkey treat a missing pattern argument as the // empty subject string, and an actual undefined value passed as the // patter as the string 'undefined'. Note that KJS is inconsistent // here, treating undefined values differently in // RegExp.prototype.compile and in the constructor, where they are // the empty string. For compatibility with KJS, we match their // behavior. if (IS_UNDEFINED(pattern) && %_ArgumentsLength() != 0) { DoConstructRegExp(this, 'undefined', flags, false); } else { DoConstructRegExp(this, pattern, flags, false); }}// DoRegExpExec and DoRegExpExecGlobal are wrappers around the runtime// %RegExp and %RegExpGlobal functions that ensure that the static// properties of the RegExp constructor are set.function DoRegExpExec(regexp, string, index) { var matchIndices = %RegExpExec(regexp, string, index); if (!IS_NULL(matchIndices)) { regExpCaptures = matchIndices; regExpSubject = regexp_input = string; } return matchIndices;};function DoRegExpExecGlobal(regexp, string) { // Here, matchIndices is an array of arrays of substring indices. var matchIndices = %RegExpExecGlobal(regexp, string); if (matchIndices.length != 0) { regExpCaptures = matchIndices[matchIndices.length - 1]; regExpSubject = regexp_input = string; } return matchIndices;};function RegExpExec(string) { if (%_ArgumentsLength() == 0) { string = regexp_input; } var s = ToString(string); var length = s.length; var lastIndex = this.lastIndex; var i = this.global ? TO_INTEGER(lastIndex) : 0; if (i < 0 || i > s.length) { this.lastIndex = 0; return null; } // matchIndices is an array of integers with length of captures*2, // each pair of integers specified the start and the end of index // in the string. var matchIndices = DoRegExpExec(this, s, i); if (matchIndices == null) { if (this.global) this.lastIndex = 0; return matchIndices; // no match } var numResults = matchIndices.length >> 1; var result = new $Array(numResults); for (var i = 0; i < numResults; i++) { var matchStart = matchIndices[2*i]; var matchEnd = matchIndices[2*i + 1]; if (matchStart != -1 && matchEnd != -1) { result[i] = s.slice(matchStart, matchEnd); } else { // Make sure the element is present. Avoid reading the undefined // property from the global object since this may change. result[i] = void 0; } } if (this.global) this.lastIndex = matchIndices[1]; result.index = matchIndices[0]; result.input = s; return result;};function RegExpTest(string) { var result = (%_ArgumentsLength() == 0) ? this.exec() : this.exec(string); return result != null;};function RegExpToString() { // If this.source is an empty string, output /(?:)/. // http://bugzilla.mozilla.org/show_bug.cgi?id=225550 // ecma_2/RegExp/properties-001.js. var src = this.source ? this.source : '(?:)'; var result = '/' + src + '/'; if (this.global) result += 'g'; if (this.ignoreCase) result += 'i'; if (this.multiline) result += 'm'; return result;};// Getters for the static properties lastMatch, lastParen, leftContext, and// rightContext of the RegExp constructor. The properties are computed based// on the captures array of the last successful match and the subject string// of the last successful match.function RegExpGetLastMatch() { return regExpSubject.slice(regExpCaptures[0], regExpCaptures[1]);};function RegExpGetLastParen() { var length = regExpCaptures.length; if (length <= 2) return ''; // There were no captures. // We match the SpiderMonkey behavior: return the substring defined by the // last pair (after the first pair) of elements of the capture array even if // it is empty. return regExpSubject.slice(regExpCaptures[length - 2], regExpCaptures[length - 1]);};function RegExpGetLeftContext() { return regExpSubject.slice(0, regExpCaptures[0]);};function RegExpGetRightContext() { return regExpSubject.slice(regExpCaptures[1], regExpSubject.length);};// The properties $1..$9 are the first nine capturing substrings of the last// successful match, or ''. The function RegExpMakeCaptureGetter will be// called with an index greater than or equal to 1 but it actually works for// any non-negative index.function RegExpMakeCaptureGetter(n) { return function() { var index = n * 2; if (index >= regExpCaptures.length) return ''; var matchStart = regExpCaptures[index]; var matchEnd = regExpCaptures[index + 1]; if (matchStart == -1 || matchEnd == -1) return ''; return regExpSubject.slice(matchStart, matchEnd); };};// Properties of the builtins object for recording the result of the last// regexp match. The property regExpCaptures is the matchIndices array of the// last successful regexp match (an array of start/end index pairs for the// match and all the captured substrings), the invariant is that there is at// least two elements. The property regExpSubject is the subject string for// the last successful match.var regExpCaptures = [0, 0];var regExpSubject = '';%FunctionSetInstanceClassName($RegExp, 'RegExp');%FunctionSetPrototype($RegExp, new $Object());%AddProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);%SetCode($RegExp, RegExpConstructor);%AddProperty($RegExp.prototype, 'exec', RegExpExec, DONT_ENUM);%AddProperty($RegExp.prototype, 'test', RegExpTest, DONT_ENUM);%AddProperty($RegExp.prototype, 'toString', RegExpToString, DONT_ENUM);%AddProperty($RegExp.prototype, 'compile', CompileRegExp, DONT_ENUM);// The spec says nothing about the length of exec and test, but// SpiderMonkey and KJS have length equal to 0.%FunctionSetLength($RegExp.prototype.exec, 0);%FunctionSetLength($RegExp.prototype.test, 0);// The length of compile is 1 in SpiderMonkey.%FunctionSetLength($RegExp.prototype.compile, 1);// The properties input, $input, and $_ are aliases for each other. When this// value is set in SpiderMonkey, the value it is set to is coerced to a// string. We mimic that behavior with a slight difference: in SpiderMonkey// the value of the expression 'RegExp.input = null' (for instance) is the// string "null" (ie, the value after coercion), while in V8 it is the value// null (ie, the value before coercion).// Getter and setter for the input.var regexp_input = "";function RegExpGetInput() { return regexp_input; };function RegExpSetInput(string) { regexp_input = ToString(string); };%DefineAccessor($RegExp, 'input', GETTER, RegExpGetInput, DONT_DELETE);%DefineAccessor($RegExp, 'input', SETTER, RegExpSetInput, DONT_DELETE);%DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, '$_', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, '$input', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE);// The properties multiline and $* are aliases for each other. When this// value is set in SpiderMonkey, the value it is set to is coerced to a// boolean. We mimic that behavior with a slight difference: in SpiderMonkey// the value of the expression 'RegExp.multiline = null' (for instance) is the// boolean false (ie, the value after coercion), while in V8 it is the value// null (ie, the value before coercion).(function () { // Getter and setter for multiline. var multiline = false; function RegExpGetMultiline() { return multiline; }; function RegExpSetMultiline(flag) { multiline = flag ? true : false; }; %DefineAccessor($RegExp, 'multiline', GETTER, RegExpGetMultiline, DONT_DELETE); %DefineAccessor($RegExp, 'multiline', SETTER, RegExpSetMultiline, DONT_DELETE); %DefineAccessor($RegExp, '$*', GETTER, RegExpGetMultiline, DONT_ENUM | DONT_DELETE); %DefineAccessor($RegExp, '$*', SETTER, RegExpSetMultiline, DONT_ENUM | DONT_DELETE);})();function NoOpSetter(ignored) {};// Static properties set by a successful match.%DefineAccessor($RegExp, 'lastMatch', GETTER, RegExpGetLastMatch, DONT_DELETE);%DefineAccessor($RegExp, 'lastMatch', SETTER, NoOpSetter, DONT_DELETE);%DefineAccessor($RegExp, '$&', GETTER, RegExpGetLastMatch, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, '$&', SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, 'lastParen', GETTER, RegExpGetLastParen, DONT_DELETE);%DefineAccessor($RegExp, 'lastParen', SETTER, NoOpSetter, DONT_DELETE);%DefineAccessor($RegExp, '$+', GETTER, RegExpGetLastParen, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, '$+', SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, 'leftContext', GETTER, RegExpGetLeftContext, DONT_DELETE);%DefineAccessor($RegExp, 'leftContext', SETTER, NoOpSetter, DONT_DELETE);%DefineAccessor($RegExp, '$`', GETTER, RegExpGetLeftContext, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, '$`', SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, 'rightContext', GETTER, RegExpGetRightContext, DONT_DELETE);%DefineAccessor($RegExp, 'rightContext', SETTER, NoOpSetter, DONT_DELETE);%DefineAccessor($RegExp, "$'", GETTER, RegExpGetRightContext, DONT_ENUM | DONT_DELETE);%DefineAccessor($RegExp, "$'", SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE);// A local scope to hide the loop index i.(function() { for (var i = 1; i < 10; ++i) { %DefineAccessor($RegExp, '$' + i, GETTER, RegExpMakeCaptureGetter(i), DONT_DELETE); %DefineAccessor($RegExp, '$' + i, SETTER, NoOpSetter, DONT_DELETE); }})();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -