Home
last modified time | relevance | path

Searched refs:declaration_type (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/spirit/classic/example/intermediate/
Dparameters.cpp42 class declaration_type class
51 declaration_type() : type(vartype_unknown) in declaration_type() function in declaration_type
55 declaration_type(ItT const &first, ItT const &last) in declaration_type() function in declaration_type
59 declaration_type(declaration_type const &type_) : type(type_.type) in declaration_type() function in declaration_type
62 declaration_type(string const &type_) : type(vartype_unknown) in declaration_type() function in declaration_type
80 void swap(declaration_type &s) { std::swap(type, s.type); } in swap()
102 struct var_decl_closure : BOOST_SPIRIT_CLASSIC_NS::closure<var_decl_closure, declaration_type>
189 symbols<declaration_type> symtab;
200 declaration_type type; in main()
206 << "Detected type: " << declaration_type::vartype(type) in main()
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-statm.c487 uint8_t declaration_type = context_p->token.type; in parser_parse_var_statement() local
489 if (declaration_type != LEXER_KEYW_VAR) in parser_parse_var_statement()
502 if (declaration_type == LEXER_KEYW_LET) in parser_parse_var_statement()
506 else if (declaration_type == LEXER_KEYW_CONST) in parser_parse_var_statement()
529 if (declaration_type != LEXER_KEYW_VAR in parser_parse_var_statement()
574 if (declaration_type != LEXER_KEYW_VAR in parser_parse_var_statement()
583 else if (declaration_type == LEXER_KEYW_CONST) in parser_parse_var_statement()
593 else if (declaration_type == LEXER_KEYW_LET) in parser_parse_var_statement()
608 else if (declaration_type == LEXER_KEYW_CONST) in parser_parse_var_statement()