Home | History | Annotate | Download | only in src

Lines Matching refs:ModuleLiteral

52   V(ModuleLiteral)                              \
648 class ModuleLiteral FINAL : public Module {
650 DECLARE_NODE_TYPE(ModuleLiteral)
653 ModuleLiteral(Zone* zone, Block* body, Interface* interface, int pos)
3126 ModuleLiteral* NewModuleLiteral(Block* body, Interface* interface, int pos) {
3127 ModuleLiteral* module =
3128 new(zone_) ModuleLiteral(zone_, body, interface, pos);
3129 VISIT_AND_RETURN(ModuleLiteral, module)