OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 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 | 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 #include "src/debug/debug-evaluate.h" | 5 #include "src/debug/debug-evaluate.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/compiler.h" | 8 #include "src/compiler.h" |
9 #include "src/contexts.h" | 9 #include "src/contexts.h" |
10 #include "src/debug/debug-frames.h" | 10 #include "src/debug/debug-frames.h" |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 case Builtins::kNumberPrototypeToFixed: | 517 case Builtins::kNumberPrototypeToFixed: |
518 case Builtins::kNumberPrototypeToPrecision: | 518 case Builtins::kNumberPrototypeToPrecision: |
519 case Builtins::kNumberPrototypeToString: | 519 case Builtins::kNumberPrototypeToString: |
520 case Builtins::kNumberPrototypeValueOf: | 520 case Builtins::kNumberPrototypeValueOf: |
521 // String builtins. Strings are immutable. | 521 // String builtins. Strings are immutable. |
522 case Builtins::kStringFromCharCode: | 522 case Builtins::kStringFromCharCode: |
523 case Builtins::kStringFromCodePoint: | 523 case Builtins::kStringFromCodePoint: |
524 case Builtins::kStringConstructor: | 524 case Builtins::kStringConstructor: |
525 case Builtins::kStringPrototypeCharAt: | 525 case Builtins::kStringPrototypeCharAt: |
526 case Builtins::kStringPrototypeCharCodeAt: | 526 case Builtins::kStringPrototypeCharCodeAt: |
| 527 case Builtins::kStringPrototypeConcat: |
527 case Builtins::kStringPrototypeEndsWith: | 528 case Builtins::kStringPrototypeEndsWith: |
528 case Builtins::kStringPrototypeIncludes: | 529 case Builtins::kStringPrototypeIncludes: |
529 case Builtins::kStringPrototypeIndexOf: | 530 case Builtins::kStringPrototypeIndexOf: |
530 case Builtins::kStringPrototypeLastIndexOf: | 531 case Builtins::kStringPrototypeLastIndexOf: |
531 case Builtins::kStringPrototypeStartsWith: | 532 case Builtins::kStringPrototypeStartsWith: |
532 case Builtins::kStringPrototypeSubstr: | 533 case Builtins::kStringPrototypeSubstr: |
533 case Builtins::kStringPrototypeSubstring: | 534 case Builtins::kStringPrototypeSubstring: |
534 case Builtins::kStringPrototypeToString: | 535 case Builtins::kStringPrototypeToString: |
535 case Builtins::kStringPrototypeToLowerCase: | 536 case Builtins::kStringPrototypeToLowerCase: |
536 case Builtins::kStringPrototypeToUpperCase: | 537 case Builtins::kStringPrototypeToUpperCase: |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 | 635 |
635 if (FLAG_trace_side_effect_free_debug_evaluate) { | 636 if (FLAG_trace_side_effect_free_debug_evaluate) { |
636 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", | 637 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", |
637 reinterpret_cast<void*>(function_addr)); | 638 reinterpret_cast<void*>(function_addr)); |
638 } | 639 } |
639 return false; | 640 return false; |
640 } | 641 } |
641 | 642 |
642 } // namespace internal | 643 } // namespace internal |
643 } // namespace v8 | 644 } // namespace v8 |
OLD | NEW |