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

Side by Side Diff: src/runtime.h

Issue 6603028: Merge revisions 7030:7051 from bleeding_edge to isolates branch.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 9 years, 9 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/regexp.js ('k') | src/runtime.cc » ('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 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
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
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_
OLDNEW
« no previous file with comments | « src/regexp.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698