[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}
This commit is contained in:
neis 2016-10-28 07:40:46 -07:00 committed by Commit bot
parent f074215082
commit a017715d1d

View File

@ -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);
}