| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // 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
- // RUN: %{carbon-run-parser}
- // CHECK:STDOUT: [
- // CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
- // CHECK:STDOUT: {kind: 'DeclaredName', text: 'F'},
- // CHECK:STDOUT: {kind: 'ParameterListEnd', text: ')'},
- // CHECK:STDOUT: {kind: 'ParameterList', text: '(', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'FunctionDefinitionStart', text: '{', subtree_size: 5},
- // CHECK:STDOUT: {kind: 'NameReference', text: 'a'},
- // CHECK:STDOUT: {kind: 'ConditionEnd', text: ')'},
- // CHECK:STDOUT: {kind: 'Condition', text: '(', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
- // CHECK:STDOUT: {kind: 'NameReference', text: 'b'},
- // CHECK:STDOUT: {kind: 'ConditionEnd', text: ')'},
- // CHECK:STDOUT: {kind: 'Condition', text: '(', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
- // CHECK:STDOUT: {kind: 'StatementEnd', text: ';'},
- // CHECK:STDOUT: {kind: 'BreakStatement', text: 'break', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 4},
- // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 8},
- // CHECK:STDOUT: {kind: 'NameReference', text: 'c'},
- // CHECK:STDOUT: {kind: 'ConditionEnd', text: ')'},
- // CHECK:STDOUT: {kind: 'Condition', text: '(', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
- // CHECK:STDOUT: {kind: 'StatementEnd', text: ';'},
- // CHECK:STDOUT: {kind: 'ContinueStatement', text: 'continue', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 4},
- // CHECK:STDOUT: {kind: 'IfStatement', text: 'if', subtree_size: 8},
- // CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 18},
- // CHECK:STDOUT: {kind: 'WhileStatement', text: 'while', subtree_size: 22},
- // CHECK:STDOUT: {kind: 'FunctionDefinition', text: '}', subtree_size: 28},
- // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
- // CHECK:STDOUT: ]
- fn F() {
- while (a) {
- if (b) {
- break;
- }
- if (c) {
- continue;
- }
- }
- }
|