Home | History | Annotate | Download | only in src

Lines Matching refs:ModuleLiteral

73   V(ModuleLiteral)                              \
637 class ModuleLiteral: public Module {
639 DECLARE_NODE_TYPE(ModuleLiteral)
642 ModuleLiteral(Block* body, Interface* interface) : Module(interface, body) {}
2902 ModuleLiteral* NewModuleLiteral(Block* body, Interface* interface) {
2903 ModuleLiteral* module = new(zone_) ModuleLiteral(body, interface);
2904 VISIT_AND_RETURN(ModuleLiteral, module)