mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 13:40:12 +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`.
39 lines
1.9 KiB
Plaintext
39 lines
1.9 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/generics/impl/basic.carbon
|
|
// TIP: To dump output, run:
|
|
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/generics/impl/basic.carbon
|
|
|
|
impl i32 as Interface {
|
|
fn Add(self, b: Self) -> Self;
|
|
}
|
|
|
|
// CHECK:STDOUT: - filename: basic.carbon
|
|
// CHECK:STDOUT: ╭─FileStart ''
|
|
// CHECK:STDOUT: │ ╭─ImplIntroducer 'impl'
|
|
// CHECK:STDOUT: │ │ ╭─IntTypeLiteral 'i32'
|
|
// CHECK:STDOUT: │ ├─ImplTypeAs 'as'
|
|
// CHECK:STDOUT: │ ├─IdentifierNameExpr 'Interface'
|
|
// CHECK:STDOUT: │ ╭─ImplDefinitionStart '{'
|
|
// CHECK:STDOUT: │ │ ╭─FunctionIntroducer 'fn'
|
|
// CHECK:STDOUT: │ │ ├─IdentifierNameMaybeBeforeSignature 'Add'
|
|
// CHECK:STDOUT: │ │ │ ╭─ExplicitParamListStart '('
|
|
// CHECK:STDOUT: │ │ │ │ ╭─SelfValueName 'self'
|
|
// CHECK:STDOUT: │ │ │ ├─SelfBindingPattern 'self'
|
|
// CHECK:STDOUT: │ │ │ ├─PatternListComma ','
|
|
// CHECK:STDOUT: │ │ │ │ ╭─IdentifierNameNotBeforeSignature 'b'
|
|
// CHECK:STDOUT: │ │ │ │ ├─BindingPatternTypeStart ':'
|
|
// CHECK:STDOUT: │ │ │ │ ├─SelfTypeNameExpr 'Self'
|
|
// CHECK:STDOUT: │ │ │ ├─LetBindingPattern ':'
|
|
// CHECK:STDOUT: │ │ ├─ExplicitParamList ')'
|
|
// CHECK:STDOUT: │ │ │ ╭─SelfTypeNameExpr 'Self'
|
|
// CHECK:STDOUT: │ │ ├─ReturnType '->'
|
|
// CHECK:STDOUT: │ ├─FunctionDecl ';'
|
|
// CHECK:STDOUT: ├─ImplDefinition '}'
|
|
// CHECK:STDOUT: ├─FileEnd ''
|
|
// CHECK:STDOUT: (root)
|