| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 uint32_t index); | 603 uint32_t index); |
| 604 MUST_USE_RESULT static MaybeObject* GetElement(Handle<Object> object, | 604 MUST_USE_RESULT static MaybeObject* GetElement(Handle<Object> object, |
| 605 uint32_t index); | 605 uint32_t index); |
| 606 | 606 |
| 607 MUST_USE_RESULT static MaybeObject* SetObjectProperty( | 607 MUST_USE_RESULT static MaybeObject* SetObjectProperty( |
| 608 Isolate* isolate, | 608 Isolate* isolate, |
| 609 Handle<Object> object, | 609 Handle<Object> object, |
| 610 Handle<Object> key, | 610 Handle<Object> key, |
| 611 Handle<Object> value, | 611 Handle<Object> value, |
| 612 PropertyAttributes attr, | 612 PropertyAttributes attr, |
| 613 StrictModeFlag strict); | 613 StrictModeFlag strict_mode); |
| 614 | 614 |
| 615 MUST_USE_RESULT static MaybeObject* ForceSetObjectProperty( | 615 MUST_USE_RESULT static MaybeObject* ForceSetObjectProperty( |
| 616 Isolate* isolate, | 616 Isolate* isolate, |
| 617 Handle<JSObject> object, | 617 Handle<JSObject> object, |
| 618 Handle<Object> key, | 618 Handle<Object> key, |
| 619 Handle<Object> value, | 619 Handle<Object> value, |
| 620 PropertyAttributes attr); | 620 PropertyAttributes attr); |
| 621 | 621 |
| 622 MUST_USE_RESULT static MaybeObject* ForceDeleteObjectProperty( | 622 MUST_USE_RESULT static MaybeObject* ForceDeleteObjectProperty( |
| 623 Isolate* isolate, | 623 Isolate* isolate, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 634 Handle<Script> script, | 634 Handle<Script> script, |
| 635 int position); | 635 int position); |
| 636 | 636 |
| 637 // Helper functions used stubs. | 637 // Helper functions used stubs. |
| 638 static void PerformGC(Object* result); | 638 static void PerformGC(Object* result); |
| 639 }; | 639 }; |
| 640 | 640 |
| 641 } } // namespace v8::internal | 641 } } // namespace v8::internal |
| 642 | 642 |
| 643 #endif // V8_RUNTIME_H_ | 643 #endif // V8_RUNTIME_H_ |
| OLD | NEW |