| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // 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/lex/testdata/string_literals.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lex/testdata/string_literals.carbon
- // --- fail_decimal_escape.carbon
- // CHECK:STDOUT: - filename: fail_decimal_escape.carbon
- // CHECK:STDOUT: tokens: [
- // CHECK:STDOUT: { index: 0, kind: 'FileStart', line: {{ *\d+}}, column: 1, indent: 1, spelling: '' },
- // CHECK:STDERR: fail_decimal_escape.carbon:[[@LINE+4]]:4: error(DecimalEscapeSequence): decimal digit follows `\0` escape sequence. Use `\x00` instead of `\0` if the next character is a digit
- // CHECK:STDERR: "\01"
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- "\01"
- // CHECK:STDOUT: { index: 1, kind: 'StringLiteral', line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: '"\01"', value: `�1`, has_leading_space: true },
- // CHECK:STDOUT: { index: 2, kind: 'FileEnd', line: {{ *}}[[@LINE+1]], column: {{ *\d+}}, indent: 1, spelling: '', has_leading_space: true },
- // CHECK:STDOUT: ]
- // --- fail_unterminated.carbon
- // CHECK:STDOUT: - filename: fail_unterminated.carbon
- // CHECK:STDOUT: tokens: [
- // CHECK:STDOUT: { index: 0, kind: 'FileStart', line: {{ *\d+}}, column: 1, indent: 1, spelling: '' },
- // CHECK:STDERR: fail_unterminated.carbon:[[@LINE+4]]:1: error(UnterminatedString): string is missing a terminator
- // CHECK:STDERR: "s
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- "s
- // CHECK:STDOUT: { index: 1, kind: 'Error', line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: '"s', has_leading_space: true },
- // CHECK:STDOUT: { index: 2, kind: 'FileEnd', line: {{ *}}[[@LINE+1]], column: {{ *\d+}}, indent: 1, spelling: '', has_leading_space: true },
- // CHECK:STDOUT: ]
- // --- fail_unknown_escape.carbon
- // CHECK:STDOUT: - filename: fail_unknown_escape.carbon
- // CHECK:STDOUT: tokens: [
- // CHECK:STDOUT: { index: 0, kind: 'FileStart', line: {{ *\d+}}, column: 1, indent: 1, spelling: '' },
- // CHECK:STDERR: fail_unknown_escape.carbon:[[@LINE+4]]:3: error(UnknownEscapeSequence): unrecognized escape sequence `w`
- // CHECK:STDERR: "\w"
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- "\w"
- // CHECK:STDOUT: { index: 1, kind: 'StringLiteral', line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: '"\w"', value: `w`, has_leading_space: true },
- // CHECK:STDOUT: { index: 2, kind: 'FileEnd', line: {{ *}}[[@LINE+1]], column: {{ *\d+}}, indent: 1, spelling: '', has_leading_space: true },
- // CHECK:STDOUT: ]
- // --- fail_unicode_escape_missing_braced_digits.carbon
- // CHECK:STDOUT: - filename: fail_unicode_escape_missing_braced_digits.carbon
- // CHECK:STDOUT: tokens: [
- // CHECK:STDOUT: { index: 0, kind: 'FileStart', line: {{ *\d+}}, column: 1, indent: 1, spelling: '' },
- // CHECK:STDERR: fail_unicode_escape_missing_braced_digits.carbon:[[@LINE+3]]:4: error(UnicodeEscapeMissingBracedDigits): escape sequence `\u` must be followed by a braced sequence of uppercase hexadecimal digits, for example `\u{70AD}}`
- // CHECK:STDERR: "\u"
- // CHECK:STDERR: ^
- "\u"
- // CHECK:STDOUT: { index: 1, kind: 'StringLiteral', line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: '"\u"', value: `u`, has_leading_space: true },
- // CHECK:STDOUT: { index: 2, kind: 'FileEnd', line: {{ *}}[[@LINE+1]], column: {{ *\d+}}, indent: 1, spelling: '', has_leading_space: true },
- // CHECK:STDOUT: ]
|