This quotes printed strings that contain special characters such as newline. This changes the output of some tests, but makes future tests that include a raw \n more appropriate.
11 lines
337 B
Plaintext
11 lines
337 B
Plaintext
Edge: call:os.is_debian() -> if(call:os.is_debian()) # c
|
|
Edge: if(call:os.is_debian()) -> var(aaa) # aaa
|
|
Edge: str("bbb") -> if(call:os.is_debian()) # a
|
|
Edge: str("ccc") -> if(call:os.is_debian()) # b
|
|
Vertex: call:os.is_debian()
|
|
Vertex: if(call:os.is_debian())
|
|
Vertex: str("bbb")
|
|
Vertex: str("ccc")
|
|
Vertex: str("hello")
|
|
Vertex: var(aaa)
|