#include "globals.h"
#include "handles.h"
#include "heap.h"
Go to the source code of this file.
#define ROOT_ACCESSOR |
( |
|
type, |
|
|
|
name, |
|
|
|
camel_name |
|
) |
| |
Value:inline Handle<type> name() { \
return Handle<type>(BitCast<type**>( \
&isolate()->heap()->roots_[Heap::k##camel_name##RootIndex])); \
}
Definition at line 415 of file factory.h.
#define SYMBOL_ACCESSOR |
( |
|
name, |
|
|
|
str |
|
) |
| |
Value:inline Handle<String> name() { \
return Handle<String>(BitCast<String**>( \
&isolate()->heap()->roots_[Heap::k##name##RootIndex])); \
}
Definition at line 423 of file factory.h.