roc/test/snapshots/expr/string_simple.md
2025-10-16 07:00:23 -07:00

415 B

META

description=Simple string literal
type=expr

SOURCE

"hello world"

EXPECTED

NIL

PROBLEMS

NIL

TOKENS

StringStart,StringPart,StringEnd,
EndOfFile,

PARSE

(e-string
	(e-string-part (raw "hello world")))

FORMATTED

NO CHANGE

CANONICALIZE

(e-string
	(e-literal (string "hello world")))

TYPES

(expr (type "Str"))