diff --git a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt index 089c7c0..58f6fc0 100644 --- a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt +++ b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt @@ -864,7 +864,7 @@ class Compiler( suspend fun parseAnnotation(t: Token): (suspend (Scope, ObjString, Statement) -> Statement) { val extraArgs = parseArgsOrNull() - println("annotation ${t.value}: args: $extraArgs") +// println("annotation ${t.value}: args: $extraArgs") return { scope, name, body -> val extras = extraArgs?.first?.toArguments(scope, extraArgs.second)?.list val required = listOf(name, body)