(builtins)
| 1109 | this.parseManifest(path, from); |
| 1110 | } |
| 1111 | mapBuiltins(builtins) { |
| 1112 | const map = new Map; |
| 1113 | builtins.forEach(builtin => { |
| 1114 | map.set(builtin.specifier, builtin); |
| 1115 | }); |
| 1116 | return map; |
| 1117 | } |
| 1118 | matchPlatform(platforms, name) { |
| 1119 | let parts = name.split("/"); |
| 1120 | while (parts.length) { |