mirror of https://github.com/Wilfred/difftastic/
35 lines
780 B
Plaintext
35 lines
780 B
Plaintext
================================================================================
|
|
Nested curly groups
|
|
================================================================================
|
|
|
|
Foo {Bar Baz {Qux}}
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source_file
|
|
(text
|
|
(word))
|
|
(curly_group
|
|
(text
|
|
(word)
|
|
(word))
|
|
(curly_group
|
|
(text
|
|
(word)))))
|
|
|
|
================================================================================
|
|
Unbalanced curly braces
|
|
================================================================================
|
|
|
|
} Foo { Bar
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source_file
|
|
(ERROR)
|
|
(text
|
|
(word))
|
|
(ERROR
|
|
(text
|
|
(word))))
|