Commit a017715d authored by neis's avatar neis Committed by Commit bot

[modules] Remove outdated TODO.

R=gsathya@chromium.org
BUG=v8:1569

Review-Url: https://codereview.chromium.org/2460883002
Cr-Commit-Position: refs/heads/master@{#40649}
parent f0742150
......@@ -19848,11 +19848,6 @@ void Module::StoreExport(Handle<Module> module, Handle<String> name,
Handle<Object> Module::LoadExport(Handle<Module> module, Handle<String> name) {
Isolate* isolate = module->GetIsolate();
Handle<Object> object(module->exports()->Lookup(name), isolate);
// TODO(neis): Namespace imports are not yet implemented. Trying to use this
// feature may crash here.
if (!object->IsCell()) UNIMPLEMENTED();
return handle(Handle<Cell>::cast(object)->value(), isolate);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment