Merge branch 'master' into codegen-on-new-ast

# Conflicts:
#	compiler/src/prog8/compiler/astprocessing/IntermediateAstMaker.kt
This commit is contained in:
Irmen de Jong
2023-01-29 13:34:00 +01:00
4 changed files with 16 additions and 22 deletions
-6
View File
@@ -135,12 +135,6 @@ class PtNop(position: Position): PtNode(position) {
}
class PtScopeVarsDecls(position: Position): PtNode(position) {
override fun printProperties() {}
}
// find the parent node of a specific type or interface
// (useful to figure out in what namespace/block something is defined, etc.)
inline fun <reified T> findParentNode(node: PtNode): T? {