• Home
  • Raw
  • Download

Lines Matching full:explicit

135     explicit Decl(util::StringView name) : name_(name) {}  in DECLARATION_KINDS()
146 explicit MultiDecl(ArenaAllocator *allocator, util::StringView name) in MultiDecl()
167explicit EnumLiteralDecl(ArenaAllocator *allocator, util::StringView name, bool isExport, bool isC… in EnumLiteralDecl()
203explicit InterfaceDecl(ArenaAllocator *allocator, util::StringView name) : MultiDecl(allocator, na… in InterfaceDecl()
213 explicit TypeParameterDecl(util::StringView name, const ir::AstNode *node);
223 explicit PropertyDecl(util::StringView name) : Decl(name) {} in PropertyDecl()
233 explicit MethodDecl(util::StringView name) : Decl(name) {} in MethodDecl()
243 explicit EnumDecl(util::StringView name) : Decl(name) {} in EnumDecl()
253 explicit TypeAliasDecl(util::StringView name) : Decl(name) {} in TypeAliasDecl()
263 explicit NamespaceDecl(ArenaAllocator *allocator, util::StringView name) in NamespaceDecl()
278 explicit VarDecl(util::StringView name) : Decl(name) {} in VarDecl()
288 explicit LetDecl(util::StringView name) : Decl(name) {} in LetDecl()
298 explicit ConstDecl(util::StringView name) : Decl(name) {} in ConstDecl()
308 explicit ClassDecl(util::StringView name) : Decl(name) {} in ClassDecl()
318 explicit FunctionDecl(ArenaAllocator *allocator, util::StringView name, const ir::AstNode *node) in FunctionDecl()
345 explicit ParameterDecl(util::StringView name) : Decl(name) {} in ParameterDecl()
355 explicit ImportEqualsDecl(util::StringView name) : Decl(name) {} in ImportEqualsDecl()