We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f454f commit 83b8f59Copy full SHA for 83b8f59
modules_dart/transform/lib/src/transform/directive_metadata_linker/ng_meta_linker.dart
@@ -377,6 +377,8 @@ class _NgMetaIdentifierResolver {
377
// these are so common that we special case them in the transformer
378
} else if (id.name == "Window" || id.name == "Document") {
379
return new CompileIdentifierMetadata(name: id.name, moduleUrl: 'dart:html');
380
+ } else if (id.name == "Profiler") {
381
+ return new CompileIdentifierMetadata(name: id.name, moduleUrl: 'asset:perf_api/lib/perf_api.dart');
382
} else if (id.name == "Logger") {
383
return new CompileIdentifierMetadata(name: id.name, moduleUrl: 'asset:logging/lib/logging.dart');
384
} else if (id.name == "Clock") {
0 commit comments