Home
last modified time | relevance | path

Searched refs:BlockCommentNode (Results 1 – 4 of 4) sorted by relevance

/third_party/gn/src/gn/
Dparse_tree.h22 class BlockCommentNode; variable
85 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;
Dparse_tree.cc180 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 …]
Dparser.cc477 std::unique_ptr<BlockCommentNode> comment = in BlockComment()
478 std::make_unique<BlockCommentNode>(); in BlockComment()
Dcommand_format.cc914 } else if (const BlockCommentNode* block_comment = root->AsBlockComment()) { in Expr()