LITERAL_RECEIVER_TYPES (shared table).
(kind: &str)
| 1434 | |
| 1435 | /// LITERAL_RECEIVER_TYPES (shared table). |
| 1436 | fn is_literal_receiver(kind: &str) -> bool { |
| 1437 | matches!( |
| 1438 | kind, |
| 1439 | "string" | "string_literal" | "interpreted_string_literal" | "raw_string_literal" |
| 1440 | | "template_string" | "concatenated_string" | "formatted_string" | "f_string" |
| 1441 | | "line_string_literal" | "string_content" | "heredoc_body" |
| 1442 | | "number" | "number_literal" | "integer" | "integer_literal" | "float" |
| 1443 | | "float_literal" | "int_literal" | "decimal_integer_literal" | "real_literal" |
| 1444 | | "char_literal" | "character_literal" | "rune_literal" | "regex" | "regex_literal" |
| 1445 | | "true" | "false" | "boolean_literal" | "bool_literal" | "none" | "null" | "nil" |
| 1446 | | "null_literal" | "undefined" |
| 1447 | | "list" | "list_literal" | "array" | "array_literal" | "array_creation_expression" |
| 1448 | | "dictionary" | "dict_literal" | "object" | "tuple" | "set" |
| 1449 | ) |
| 1450 | } |
| 1451 | |
| 1452 | /// BUILTIN_TYPES (shared table — port the WHOLE set: a rust `String` |
| 1453 | /// type_identifier IS suppressed via the Scala row). |