JS: Drive-by fix for accidental recursion

This commit is contained in:
Asger F
2022-09-06 09:20:59 +02:00
parent c7c3ad29cd
commit f07e0592d0

View File

@@ -96,7 +96,7 @@ API::Node getExtraNodeFromType(string package, string type) {
result = API::moduleImport(package)
or
// Access instance of a type based on type annotations
result = API::Node::ofType(getAPackageAlias(package), type)
result = API::Internal::getANodeOfTypeRaw(getAPackageAlias(package), type)
}
/**