Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: src/objects.cc

Issue 2460883002: [modules] Remove outdated TODO. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index fb594fd2d6c9102de48f3da44c002958dd19ba5b..a6564e41050d82f0e0fb8d0234b14b5312d53b65 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -19842,11 +19842,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);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698