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

Function is_literal_receiver

codegraph-kernel/src/python.rs:964–978  ·  view source on GitHub ↗

LITERAL_RECEIVER_TYPES membership (shared table; python names among them).

(kind: &str)

Source from the content-addressed store, hash-verified

962
963/// LITERAL_RECEIVER_TYPES membership (shared table; python names among them).
964fn is_literal_receiver(kind: &str) -> bool {
965 matches!(
966 kind,
967 "string" | "string_literal" | "interpreted_string_literal" | "raw_string_literal"
968 | "template_string" | "concatenated_string" | "formatted_string" | "f_string"
969 | "line_string_literal" | "string_content" | "heredoc_body"
970 | "number" | "number_literal" | "integer" | "integer_literal" | "float"
971 | "float_literal" | "int_literal" | "decimal_integer_literal" | "real_literal"
972 | "char_literal" | "character_literal" | "rune_literal" | "regex" | "regex_literal"
973 | "true" | "false" | "boolean_literal" | "bool_literal" | "none" | "null" | "nil"
974 | "null_literal" | "undefined"
975 | "list" | "list_literal" | "array" | "array_literal" | "array_creation_expression"
976 | "dictionary" | "dict_literal" | "object" | "tuple" | "set"
977 )
978}
979
980fn opt_str(arena: &mut Arena, s: Option<&str>) -> StrRef {
981 match s {

Callers 1

extract_callMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected