mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 08:10:09 +01:00
It's hard to track 2-space indent levels across large vertical gaps, and it can be hard to suppress the instinct to read the dump as if it were preorder. This change introduces a new dump mode that addresses both problems by using box-drawing characters to explicitly represent the parent-child edges of the tree. This new mode is the default, but the old behavior remains available with `--parse-dump-format=yaml-postorder`.
59 lines
3.1 KiB
Plaintext
59 lines
3.1 KiB
Plaintext
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
// AUTOUPDATE
|
|
// TIP: To test this file alone, run:
|
|
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/parse/testdata/tuple/nested.carbon
|
|
// TIP: To dump output, run:
|
|
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/tuple/nested.carbon
|
|
|
|
var y: ((), (), ());
|
|
|
|
var (a: (), (b: (), c: ()));
|
|
|
|
// CHECK:STDOUT: - filename: nested.carbon
|
|
// CHECK:STDOUT: ╭─FileStart ''
|
|
// CHECK:STDOUT: │ ╭─VariableIntroducer 'var'
|
|
// CHECK:STDOUT: │ │ ╭─IdentifierNameNotBeforeSignature 'y'
|
|
// CHECK:STDOUT: │ │ ├─BindingPatternTypeStart ':'
|
|
// CHECK:STDOUT: │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ │ ├─TupleLiteralComma ','
|
|
// CHECK:STDOUT: │ │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ │ ├─TupleLiteralComma ','
|
|
// CHECK:STDOUT: │ │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ ╭─VarBindingPattern ':'
|
|
// CHECK:STDOUT: │ ├─VariablePattern 'var'
|
|
// CHECK:STDOUT: ├─VariableDecl ';'
|
|
// CHECK:STDOUT: │ ╭─VariableIntroducer 'var'
|
|
// CHECK:STDOUT: │ │ ╭─TuplePatternStart '('
|
|
// CHECK:STDOUT: │ │ │ ╭─IdentifierNameNotBeforeSignature 'a'
|
|
// CHECK:STDOUT: │ │ │ ├─BindingPatternTypeStart ':'
|
|
// CHECK:STDOUT: │ │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ ├─VarBindingPattern ':'
|
|
// CHECK:STDOUT: │ │ ├─PatternListComma ','
|
|
// CHECK:STDOUT: │ │ │ ╭─TuplePatternStart '('
|
|
// CHECK:STDOUT: │ │ │ │ ╭─IdentifierNameNotBeforeSignature 'b'
|
|
// CHECK:STDOUT: │ │ │ │ ├─BindingPatternTypeStart ':'
|
|
// CHECK:STDOUT: │ │ │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ │ ├─VarBindingPattern ':'
|
|
// CHECK:STDOUT: │ │ │ ├─PatternListComma ','
|
|
// CHECK:STDOUT: │ │ │ │ ╭─IdentifierNameNotBeforeSignature 'c'
|
|
// CHECK:STDOUT: │ │ │ │ ├─BindingPatternTypeStart ':'
|
|
// CHECK:STDOUT: │ │ │ │ │ ╭─TupleLiteralStart '('
|
|
// CHECK:STDOUT: │ │ │ │ ├─TupleLiteral ')'
|
|
// CHECK:STDOUT: │ │ │ ├─VarBindingPattern ':'
|
|
// CHECK:STDOUT: │ │ ├─TuplePattern ')'
|
|
// CHECK:STDOUT: │ │ ╭─TuplePattern ')'
|
|
// CHECK:STDOUT: │ ├─VariablePattern 'var'
|
|
// CHECK:STDOUT: ├─VariableDecl ';'
|
|
// CHECK:STDOUT: ├─FileEnd ''
|
|
// CHECK:STDOUT: (root)
|