Home | History | Annotate | Download | only in src

Lines Matching full:modulepath

75   V(ModulePath)                                 \
668 class ModulePath V8_FINAL : public Module {
670 DECLARE_NODE_TYPE(ModulePath)
676 ModulePath(Module* module, Handle<String> name, Zone* zone, int pos)
2973 ModulePath* NewModulePath(Module* origin, Handle<String> name, int pos) {
2974 ModulePath* module = new(zone_) ModulePath(origin, name, zone_, pos);
2975 VISIT_AND_RETURN(ModulePath, module)