| D | astDump.h | 60 class Property { 73 …std::variant<const char *, lexer::TokenType, std::initializer_list<Property>, util::StringView, bo… 76 Property(const char *key, const char *string) : key_(key), value_(string) {} in Property() function 77 Property(const char *key, util::StringView str) : key_(key), value_(str) {} in Property() function 78 Property(const char *key, bool boolean) : key_(key), value_(boolean) {} in Property() function 79 Property(const char *key, double number) : key_(key), value_(number) {} in Property() function 80 Property(const char *key, lexer::TokenType token) : key_(key), value_(token) {} in Property() function 81 … Property(const char *key, std::initializer_list<Property> props) : key_(key), value_(props) {} in Property() function 82 …Property(const char *key, const ir::AstNode *node) : key_(key), value_(const_cast<ir::AstNode *>(n… in Property() function 84 Property(const char *key, Constant constant) : key_(key), value_(constant) {} in Property() function [all …]
|