Home
last modified time | relevance | path

Searched defs:ASTIfStatement (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/sksl/ast/
DSkSLASTIfStatement.h18 struct ASTIfStatement : public ASTStatement { struct
19 ASTIfStatement(Position position, bool isStatic, std::unique_ptr<ASTExpression> test, in ASTIfStatement() function
27 String description() const override { in description()
43 const bool fIsStatic;
44 const std::unique_ptr<ASTExpression> fTest;
45 const std::unique_ptr<ASTStatement> fIfTrue;
46 const std::unique_ptr<ASTStatement> fIfFalse;
48 typedef ASTStatement INHERITED;