raw_identifier.carbon 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lex/testdata/raw_identifier.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lex/testdata/raw_identifier.carbon
  10. // CHECK:STDOUT: - filename: raw_identifier.carbon
  11. // CHECK:STDOUT: tokens:
  12. // A non-keyword identifier.
  13. r#foo
  14. // CHECK:STDOUT: - { index: 1, kind: "Identifier", line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: "foo", identifier: 1, has_leading_space: true }
  15. // The same non-keyword identifier, for comparison.
  16. foo
  17. // CHECK:STDOUT: - { index: 2, kind: "Identifier", line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: "foo", identifier: 1, has_leading_space: true }
  18. // A keyword as a raw identifier.
  19. r#self
  20. // CHECK:STDOUT: - { index: 3, kind: "Identifier", line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: "self", identifier: 2, has_leading_space: true }
  21. // The same keyword, for comparison.
  22. self
  23. // CHECK:STDOUT: - { index: 4, kind: "SelfValueIdentifier", line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: "self", has_leading_space: true }
  24. // A type literal as a raw identifier.
  25. r#i32
  26. // CHECK:STDOUT: - { index: 5, kind: "Identifier", line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: "i32", identifier: 3, has_leading_space: true }
  27. // The same type literal, for comparison.
  28. i32
  29. // CHECK:STDOUT: - { index: 6, kind: "IntTypeLiteral", line: {{ *}}[[@LINE-1]], column: 1, indent: 1, spelling: "i32", has_leading_space: true }