Use _impl for package

This commit is contained in:
2023-04-25 12:35:28 -06:00
parent 04f3d47a86
commit 4fea7dfb76

View File

@@ -103,10 +103,10 @@ class FrontendContext {
} }
static function moduleForType(name:String) { static function moduleForType(name:String) {
if (name.indexOf('__impl') != -1 || plugins.getData().length == 0) return; if (name.indexOf('_impl') != -1 || plugins.getData().length == 0) return;
var pack = name.split('.'); var pack = name.split('.');
var tname = pack.pop(); var tname = pack.pop();
var actual = pack.concat(['__impl', tname]).join('.'); var actual = pack.concat(['_impl', tname]).join('.');
cache[name] = { cache[name] = {
pack: pack, pack: pack,
name: tname, name: tname,