Anmol Sethi 2023-01-09 13:31:27 -08:00
parent a277d10dda
commit 4b50748dd0
No known key found for this signature in database
GPG key ID: 25BC68888A99A8BA
2 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,5 @@
// TODO: Remove boxes and cleanup like d2ir
//
// d2ast implements the d2 language's abstract syntax tree.
//
// Special characters to think about in parser:

2
lib/env/env.go vendored
View file

@ -23,5 +23,5 @@ func DevOnly() bool {
}
func SkipGraphDiffTests() bool {
return os.Getenv("SKIP_GRAPH_DIFF_TESTS") == "on"
return os.Getenv("SKIP_GRAPH_DIFF_TESTS") != ""
}