blob: 35795e9f123434b2994f7379fb7b005538f6d05c [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
Ethan Nicholas0df1b042017-03-31 13:56:23 -04007
ethannicholasb3058bd2016-07-01 08:22:01 -07008#ifndef SKSL_ASTTERNARYEXPRESSION
9#define SKSL_ASTTERNARYEXPRESSION
10
11#include "SkSLASTExpression.h"
12
13namespace SkSL {
14
15/**
16 * A ternary expression (test ? ifTrue : ifFalse).
17 */
18struct ASTTernaryExpression : public ASTExpression {
19 ASTTernaryExpression(std::unique_ptr<ASTExpression> test,
20 std::unique_ptr<ASTExpression> ifTrue,
21 std::unique_ptr<ASTExpression> ifFalse)
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070022 : INHERITED(test->fOffset, kTernary_Kind)
ethannicholasb3058bd2016-07-01 08:22:01 -070023 , fTest(std::move(test))
24 , fIfTrue(std::move(ifTrue))
25 , fIfFalse(std::move(ifFalse)) {}
26
Ethan Nicholas0df1b042017-03-31 13:56:23 -040027 String description() const override {
ethannicholasb3058bd2016-07-01 08:22:01 -070028 return "(" + fTest->description() + " ? " + fIfTrue->description() + " : " +
Ethan Nicholas0df1b042017-03-31 13:56:23 -040029 fIfFalse->description() + ")";
ethannicholasb3058bd2016-07-01 08:22:01 -070030 }
31
32 const std::unique_ptr<ASTExpression> fTest;
33 const std::unique_ptr<ASTExpression> fIfTrue;
34 const std::unique_ptr<ASTExpression> fIfFalse;
35
36 typedef ASTExpression INHERITED;
37};
38
39} // namespace
40
41#endif