| OLD | NEW |
| 1 # | 1 # |
| 2 # Entries in this file define how editor maps #import(...) directives | 2 # Entries in this file define how editor maps #import(...) directives |
| 3 # | 3 # |
| 4 # A key that ends with '\:' maps an entire scheme to a directory tree | 4 # A key that ends with '\:' maps an entire scheme to a directory tree |
| 5 # (All ':' characters in the key must be escaped) | 5 # (All ':' characters in the key must be escaped) |
| 6 # For example, an entry in this file such as | 6 # For example, an entry in this file such as |
| 7 # foo\: = /user/name/some/dir | 7 # foo\: = /user/name/some/dir |
| 8 # will map the following imports | 8 # will map the following imports |
| 9 # #import('foo:bar') --> /user/name/some/dir/bar/bar.dart | 9 # #import('foo:bar') --> /user/name/some/dir/bar/bar.dart |
| 10 # #import('foo:blat.dart') --> /user/name/some/dir/blat.dart | 10 # #import('foo:blat.dart') --> /user/name/some/dir/blat.dart |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 # foo\:bar = /user/name/another/dir/myfile.dart | 22 # foo\:bar = /user/name/another/dir/myfile.dart |
| 23 # will map | 23 # will map |
| 24 # #import('foo:bar') --> /user/name/another/dir/myfile.dart | 24 # #import('foo:bar') --> /user/name/another/dir/myfile.dart |
| 25 # #import('foo:blue') --> /user/name/some/dir/blue/blue.dart | 25 # #import('foo:blue') --> /user/name/some/dir/blue/blue.dart |
| 26 # | 26 # |
| 27 # Paths that are not absolute are considered to be relative to editor installati
on directory. | 27 # Paths that are not absolute are considered to be relative to editor installati
on directory. |
| 28 # Leading and trailing whitespace around keys and values is ignored. | 28 # Leading and trailing whitespace around keys and values is ignored. |
| 29 # This file is read exactly once when editor is launched | 29 # This file is read exactly once when editor is launched |
| 30 # | 30 # |
| 31 | 31 |
| 32 dart\: = dart-sdk/lib | 32 dart\: = . |
| 33 dart\:builtin = dart-sdk/lib/builtin/builtin_runtime.dart | 33 dart\:builtin = builtin/builtin_runtime.dart |
| 34 dart\:core = dart-sdk/lib/core/core_runtime.dart | 34 dart\:core = core/core_runtime.dart |
| 35 dart\:coreimpl = dart-sdk/lib/coreimpl/coreimpl_runtime.dart | 35 dart\:coreimpl = coreimpl/coreimpl_runtime.dart |
| 36 dart\:dom = dart-sdk/lib/dom/dom_frog.dart | 36 # dom/dom_frog.dart is a placeholder for dartium dom |
| 37 dart\:html = dart-sdk/lib/html/html_dartium.dart | 37 dart\:dom = dom/dom_frog.dart |
| 38 dart\:io = dart-sdk/lib/io/io_runtime.dart | 38 dart\:html = html/html_dartium.dart |
| 39 dart\:isolate = dart-sdk/lib/isolate/isolate_compiler.dart | 39 dart\:io = io/io_runtime.dart |
| 40 dart\:isolate = isolate/isolate_runtime.dart |
| 41 dart\:uri = uri/uri.dart |
| 42 dart\:json = json/json.dart |
| 43 dart\:utf = utf/utf.dart |
| OLD | NEW |