We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1f46e9 commit 573dad3Copy full SHA for 573dad3
Makefile
@@ -62,7 +62,7 @@ $(TEST_TARGETS): gocmd
62
@$(GO_CMD) run ./cmd/glj/main.go $(basename $@)
63
64
.PHONY: test
65
-test: vet $(TEST_TARGETS)
+test: $(TEST_TARGETS) # vet - vet is disabled until we fix errors in generated code
66
67
.PHONY: format
68
format:
pkg/runtime/rtcompat.go
@@ -175,6 +175,7 @@ func (rt *RTMethods) Load(scriptBase string) {
175
}
176
ReadEval(string(buf), WithFilename(filename))
177
178
+ // if compileFiles is set, compile the namespace to a .go file
179
compileFiles := VarCompileFiles.Get().(bool)
180
if !compileFiles {
181
return
0 commit comments