use of com.github.anba.es6draft.runtime.modules.SourceIdentifier in project es6draft by anba.
the class URLModuleLoader method defineModule.
@Override
protected void defineModule(SourceTextModuleRecord module) {
SourceIdentifier identifier = module.getSourceCodeId();
if (modules.containsKey(identifier)) {
throw new IllegalArgumentException();
}
modules.put(identifier, module);
}
Aggregations