Searched refs:BlockCommentNode (Results 1 – 4 of 4) sorted by relevance
22 class BlockCommentNode; variable85 virtual const BlockCommentNode* AsBlockComment() const;567 class BlockCommentNode : public ParseNode {569 BlockCommentNode();570 ~BlockCommentNode() override;572 const BlockCommentNode* AsBlockComment() const override;579 static std::unique_ptr<BlockCommentNode> NewFromJSON(590 BlockCommentNode(const BlockCommentNode&) = delete;591 BlockCommentNode& operator=(const BlockCommentNode&) = delete;
180 const BlockCommentNode* ParseNode::AsBlockComment() const { in AsBlockComment()268 RETURN_IF_MATCHES_NAME(BlockCommentNode); in BuildFromJSON()1184 BlockCommentNode::BlockCommentNode() = default;1186 BlockCommentNode::~BlockCommentNode() = default;1188 const BlockCommentNode* BlockCommentNode::AsBlockComment() const { in AsBlockComment()1192 Value BlockCommentNode::Execute(Scope* scope, Err* err) const { in Execute()1196 LocationRange BlockCommentNode::GetRange() const { in GetRange()1200 Err BlockCommentNode::MakeErrorDescribing(const std::string& msg, in MakeErrorDescribing()1205 base::Value BlockCommentNode::GetJSONNode() const { in GetJSONNode()1211 std::unique_ptr<BlockCommentNode> BlockCommentNode::NewFromJSON( in NewFromJSON()[all …]
477 std::unique_ptr<BlockCommentNode> comment = in BlockComment()478 std::make_unique<BlockCommentNode>(); in BlockComment()
914 } else if (const BlockCommentNode* block_comment = root->AsBlockComment()) { in Expr()