mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-27 11:03:14 +03:00
75ce7db663
* Fixed incorrect handling of escaped strings in parser. * Refactored Parser golden tests a bit. * Moved PrettyPrinter for Parser AST to Parser. * fix
12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
test Decl {
|
|
string: "Hello Wasp =}",
|
|
escapedString: "Look, a \"",
|
|
integer: 42,
|
|
real: 3.14,
|
|
yes: true,
|
|
no: false,
|
|
ident: Wasp,
|
|
// This is a comment
|
|
innerDict: { innerDictReal: 2.17 }
|
|
}
|