MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / is_literal_receiver

Function is_literal_receiver

codegraph-kernel/src/rustlang.rs:1462–1476  ·  view source on GitHub ↗

LITERAL_RECEIVER_TYPES (shared table).

(kind: &str)

Source from the content-addressed store, hash-verified

1460
1461/// LITERAL_RECEIVER_TYPES (shared table).
1462fn is_literal_receiver(kind: &str) -> bool {
1463 matches!(
1464 kind,
1465 "string" | "string_literal" | "interpreted_string_literal" | "raw_string_literal"
1466 | "template_string" | "concatenated_string" | "formatted_string" | "f_string"
1467 | "line_string_literal" | "string_content" | "heredoc_body"
1468 | "number" | "number_literal" | "integer" | "integer_literal" | "float"
1469 | "float_literal" | "int_literal" | "decimal_integer_literal" | "real_literal"
1470 | "char_literal" | "character_literal" | "rune_literal" | "regex" | "regex_literal"
1471 | "true" | "false" | "boolean_literal" | "bool_literal" | "none" | "null" | "nil"
1472 | "null_literal" | "undefined"
1473 | "list" | "list_literal" | "array" | "array_literal" | "array_creation_expression"
1474 | "dictionary" | "dict_literal" | "object" | "tuple" | "set"
1475 )
1476}
1477
1478/// BUILTIN_TYPES (shared table — port the WHOLE set: a rust `String`
1479/// type_identifier IS suppressed via the Scala row).

Callers 1

extract_callMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected