Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/regexp.js

Issue 351853005: Split SetProperty(...attributes, strictmode) into AddProperty(...attributes) and SetProperty(...… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/promise.js ('k') | src/runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 // This file relies on the fact that the following declaration has been made 5 // This file relies on the fact that the following declaration has been made
6 // in runtime.js: 6 // in runtime.js:
7 // var $Object = global.Object; 7 // var $Object = global.Object;
8 // var $Array = global.Array; 8 // var $Array = global.Array;
9 9
10 var $RegExp = global.RegExp; 10 var $RegExp = global.RegExp;
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 // Used internally by replace regexp with function. 374 // Used internally by replace regexp with function.
375 // The array has the format of an "apply" argument for a replacement 375 // The array has the format of an "apply" argument for a replacement
376 // function. 376 // function.
377 var lastMatchInfoOverride = null; 377 var lastMatchInfoOverride = null;
378 378
379 // ------------------------------------------------------------------- 379 // -------------------------------------------------------------------
380 380
381 function SetUpRegExp() { 381 function SetUpRegExp() {
382 %CheckIsBootstrapping(); 382 %CheckIsBootstrapping();
383 %FunctionSetInstanceClassName($RegExp, 'RegExp'); 383 %FunctionSetInstanceClassName($RegExp, 'RegExp');
384 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM); 384 %AddProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
385 %SetCode($RegExp, RegExpConstructor); 385 %SetCode($RegExp, RegExpConstructor);
386 386
387 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array( 387 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array(
388 "exec", RegExpExec, 388 "exec", RegExpExec,
389 "test", RegExpTest, 389 "test", RegExpTest,
390 "toString", RegExpToString, 390 "toString", RegExpToString,
391 "compile", RegExpCompileJS 391 "compile", RegExpCompileJS
392 )); 392 ));
393 393
394 // The length of compile is 1 in SpiderMonkey. 394 // The length of compile is 1 in SpiderMonkey.
395 %FunctionSetLength($RegExp.prototype.compile, 1); 395 %FunctionSetLength($RegExp.prototype.compile, 1);
396 396
397 // The properties input, $input, and $_ are aliases for each other. When this 397 // The properties input, $input, and $_ are aliases for each other. When this
398 // value is set the value it is set to is coerced to a string. 398 // value is set the value it is set to is coerced to a string.
399 // Getter and setter for the input. 399 // Getter and setter for the input.
400 var RegExpGetInput = function() { 400 var RegExpGetInput = function() {
401 var regExpInput = LAST_INPUT(lastMatchInfo); 401 var regExpInput = LAST_INPUT(lastMatchInfo);
402 return IS_UNDEFINED(regExpInput) ? "" : regExpInput; 402 return IS_UNDEFINED(regExpInput) ? "" : regExpInput;
403 }; 403 };
404 var RegExpSetInput = function(string) { 404 var RegExpSetInput = function(string) {
405 LAST_INPUT(lastMatchInfo) = ToString(string); 405 LAST_INPUT(lastMatchInfo) = ToString(string);
406 }; 406 };
407 407
408 %OptimizeObjectForAddingMultipleProperties($RegExp, 22); 408 %OptimizeObjectForAddingMultipleProperties($RegExp, 22);
409 %DefineOrRedefineAccessorProperty($RegExp, 'input', RegExpGetInput, 409 %DefineAccessorPropertyUnchecked($RegExp, 'input', RegExpGetInput,
410 RegExpSetInput, DONT_DELETE); 410 RegExpSetInput, DONT_DELETE);
411 %DefineOrRedefineAccessorProperty($RegExp, '$_', RegExpGetInput, 411 %DefineAccessorPropertyUnchecked($RegExp, '$_', RegExpGetInput,
412 RegExpSetInput, DONT_ENUM | DONT_DELETE); 412 RegExpSetInput, DONT_ENUM | DONT_DELETE);
413 %DefineOrRedefineAccessorProperty($RegExp, '$input', RegExpGetInput, 413 %DefineAccessorPropertyUnchecked($RegExp, '$input', RegExpGetInput,
414 RegExpSetInput, DONT_ENUM | DONT_DELETE); 414 RegExpSetInput, DONT_ENUM | DONT_DELETE);
415 415
416 // The properties multiline and $* are aliases for each other. When this 416 // The properties multiline and $* are aliases for each other. When this
417 // value is set in SpiderMonkey, the value it is set to is coerced to a 417 // value is set in SpiderMonkey, the value it is set to is coerced to a
418 // boolean. We mimic that behavior with a slight difference: in SpiderMonkey 418 // boolean. We mimic that behavior with a slight difference: in SpiderMonkey
419 // the value of the expression 'RegExp.multiline = null' (for instance) is the 419 // the value of the expression 'RegExp.multiline = null' (for instance) is the
420 // boolean false (i.e., the value after coercion), while in V8 it is the value 420 // boolean false (i.e., the value after coercion), while in V8 it is the value
421 // null (i.e., the value before coercion). 421 // null (i.e., the value before coercion).
422 422
423 // Getter and setter for multiline. 423 // Getter and setter for multiline.
424 var multiline = false; 424 var multiline = false;
425 var RegExpGetMultiline = function() { return multiline; }; 425 var RegExpGetMultiline = function() { return multiline; };
426 var RegExpSetMultiline = function(flag) { multiline = flag ? true : false; }; 426 var RegExpSetMultiline = function(flag) { multiline = flag ? true : false; };
427 427
428 %DefineOrRedefineAccessorProperty($RegExp, 'multiline', RegExpGetMultiline, 428 %DefineAccessorPropertyUnchecked($RegExp, 'multiline', RegExpGetMultiline,
429 RegExpSetMultiline, DONT_DELETE); 429 RegExpSetMultiline, DONT_DELETE);
430 %DefineOrRedefineAccessorProperty($RegExp, '$*', RegExpGetMultiline, 430 %DefineAccessorPropertyUnchecked($RegExp, '$*', RegExpGetMultiline,
431 RegExpSetMultiline, 431 RegExpSetMultiline,
432 DONT_ENUM | DONT_DELETE); 432 DONT_ENUM | DONT_DELETE);
433 433
434 434
435 var NoOpSetter = function(ignored) {}; 435 var NoOpSetter = function(ignored) {};
436 436
437 437
438 // Static properties set by a successful match. 438 // Static properties set by a successful match.
439 %DefineOrRedefineAccessorProperty($RegExp, 'lastMatch', RegExpGetLastMatch, 439 %DefineAccessorPropertyUnchecked($RegExp, 'lastMatch', RegExpGetLastMatch,
440 NoOpSetter, DONT_DELETE); 440 NoOpSetter, DONT_DELETE);
441 %DefineOrRedefineAccessorProperty($RegExp, '$&', RegExpGetLastMatch, 441 %DefineAccessorPropertyUnchecked($RegExp, '$&', RegExpGetLastMatch,
442 NoOpSetter, DONT_ENUM | DONT_DELETE); 442 NoOpSetter, DONT_ENUM | DONT_DELETE);
443 %DefineOrRedefineAccessorProperty($RegExp, 'lastParen', RegExpGetLastParen, 443 %DefineAccessorPropertyUnchecked($RegExp, 'lastParen', RegExpGetLastParen,
444 NoOpSetter, DONT_DELETE); 444 NoOpSetter, DONT_DELETE);
445 %DefineOrRedefineAccessorProperty($RegExp, '$+', RegExpGetLastParen, 445 %DefineAccessorPropertyUnchecked($RegExp, '$+', RegExpGetLastParen,
446 NoOpSetter, DONT_ENUM | DONT_DELETE); 446 NoOpSetter, DONT_ENUM | DONT_DELETE);
447 %DefineOrRedefineAccessorProperty($RegExp, 'leftContext', 447 %DefineAccessorPropertyUnchecked($RegExp, 'leftContext',
448 RegExpGetLeftContext, NoOpSetter, 448 RegExpGetLeftContext, NoOpSetter,
449 DONT_DELETE); 449 DONT_DELETE);
450 %DefineOrRedefineAccessorProperty($RegExp, '$`', RegExpGetLeftContext, 450 %DefineAccessorPropertyUnchecked($RegExp, '$`', RegExpGetLeftContext,
451 NoOpSetter, DONT_ENUM | DONT_DELETE); 451 NoOpSetter, DONT_ENUM | DONT_DELETE);
452 %DefineOrRedefineAccessorProperty($RegExp, 'rightContext', 452 %DefineAccessorPropertyUnchecked($RegExp, 'rightContext',
453 RegExpGetRightContext, NoOpSetter, 453 RegExpGetRightContext, NoOpSetter,
454 DONT_DELETE); 454 DONT_DELETE);
455 %DefineOrRedefineAccessorProperty($RegExp, "$'", RegExpGetRightContext, 455 %DefineAccessorPropertyUnchecked($RegExp, "$'", RegExpGetRightContext,
456 NoOpSetter, DONT_ENUM | DONT_DELETE); 456 NoOpSetter, DONT_ENUM | DONT_DELETE);
457 457
458 for (var i = 1; i < 10; ++i) { 458 for (var i = 1; i < 10; ++i) {
459 %DefineOrRedefineAccessorProperty($RegExp, '$' + i, 459 %DefineAccessorPropertyUnchecked($RegExp, '$' + i,
460 RegExpMakeCaptureGetter(i), NoOpSetter, 460 RegExpMakeCaptureGetter(i), NoOpSetter,
461 DONT_DELETE); 461 DONT_DELETE);
462 } 462 }
463 %ToFastProperties($RegExp); 463 %ToFastProperties($RegExp);
464 } 464 }
465 465
466 SetUpRegExp(); 466 SetUpRegExp();
OLDNEW
« no previous file with comments | « src/promise.js ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698