Searched defs:ModuleLiteral (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dast.h71 V(ModuleLiteral) \
605 class ModuleLiteral: public Module { class in namespace:v8::internal
607 DECLARE_NODE_TYPE(ModuleLiteral)
614 ModuleLiteral(Block* body, Interface* interface) function in class:v8::internal::ModuleLiteral
2683 ModuleLiteral* NewModuleLiteral(Block* body, Interface* interface) {
2684 ModuleLiteral* module = new(zone_) ModuleLiteral(body, interface);
2685 VISIT_AND_RETURN(ModuleLiteral, module)
/external/chromium_org/v8/src/
H A Dast.h73 V(ModuleLiteral) \
637 class ModuleLiteral: public Module { class in namespace:v8::internal
639 DECLARE_NODE_TYPE(ModuleLiteral)
642 ModuleLiteral(Block* body, Interface* interface) : Module(interface, body) {} function in class:v8::internal::ModuleLiteral
2902 ModuleLiteral* NewModuleLiteral(Block* body, Interface* interface) {
2903 ModuleLiteral* module = new(zone_) ModuleLiteral(body, interface);
2904 VISIT_AND_RETURN(ModuleLiteral, module)

Completed in 726 milliseconds