mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 16:50:10 +01:00
Also surround it in square brackets rather than parentheses. This matches the format used by Clang and GCC, and means diagnostics will still match the `file:line:col: error: ` pattern used by some IDE tools. Before: ```console fail_builtins.carbon:11:11: error(AliasRequiresNameRef): alias initializer must be a name reference ``` After: ```console fail_builtins.carbon:11:11: error: alias initializer must be a name reference [AliasRequiresNameRef] ``` Also tighten up test regex to only match on `STDERR` lines that list a file name.
42 lines
2.2 KiB
Plaintext
42 lines
2.2 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/for/fail_missing_var.carbon
|
|
// TIP: To dump output, run:
|
|
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/for/fail_missing_var.carbon
|
|
|
|
fn foo() {
|
|
// CHECK:STDERR: fail_missing_var.carbon:[[@LINE+3]]:8: error: expected `var` declaration [ExpectedVariableDecl]
|
|
// CHECK:STDERR: for (x: i32 in y) {
|
|
// CHECK:STDERR: ^
|
|
for (x: i32 in y) {
|
|
Print(x);
|
|
}
|
|
}
|
|
|
|
// CHECK:STDOUT: - filename: fail_missing_var.carbon
|
|
// CHECK:STDOUT: parse_tree: [
|
|
// CHECK:STDOUT: {kind: 'FileStart', text: ''},
|
|
// CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
|
|
// CHECK:STDOUT: {kind: 'IdentifierName', text: 'foo'},
|
|
// CHECK:STDOUT: {kind: 'TuplePatternStart', text: '('},
|
|
// CHECK:STDOUT: {kind: 'TuplePattern', text: ')', subtree_size: 2},
|
|
// CHECK:STDOUT: {kind: 'FunctionDefinitionStart', text: '{', subtree_size: 5},
|
|
// CHECK:STDOUT: {kind: 'ForHeaderStart', text: '('},
|
|
// CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'y'},
|
|
// CHECK:STDOUT: {kind: 'ForHeader', text: ')', has_error: yes, subtree_size: 3},
|
|
// CHECK:STDOUT: {kind: 'CodeBlockStart', text: '{'},
|
|
// CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'Print'},
|
|
// CHECK:STDOUT: {kind: 'CallExprStart', text: '(', subtree_size: 2},
|
|
// CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'x'},
|
|
// CHECK:STDOUT: {kind: 'CallExpr', text: ')', subtree_size: 4},
|
|
// CHECK:STDOUT: {kind: 'ExprStatement', text: ';', subtree_size: 5},
|
|
// CHECK:STDOUT: {kind: 'CodeBlock', text: '}', subtree_size: 7},
|
|
// CHECK:STDOUT: {kind: 'ForStatement', text: 'for', subtree_size: 11},
|
|
// CHECK:STDOUT: {kind: 'FunctionDefinition', text: '}', subtree_size: 17},
|
|
// CHECK:STDOUT: {kind: 'FileEnd', text: ''},
|
|
// CHECK:STDOUT: ]
|