blob: c4b6e3a45b92bb13154e688b1eb0367e99f89fc9 [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 */
7
8#ifndef SKSL_ASTBINARYEXPRESSION
9#define SKSL_ASTBINARYEXPRESSION
10
11#include "SkSLASTExpression.h"
12#include "../SkSLToken.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070013
14namespace SkSL {
15
16/**
17 * Represents a binary operation, with the operator represented by the token's type.
18 */
19struct ASTBinaryExpression : public ASTExpression {
20 ASTBinaryExpression(std::unique_ptr<ASTExpression> left, Token op,
21 std::unique_ptr<ASTExpression> right)
22 : INHERITED(op.fPosition, kBinary_Kind)
23 , fLeft(std::move(left))
24 , fOperator(op.fKind)
25 , fRight(std::move(right)) {}
26
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050027 SkString description() const override {
ethannicholasb3058bd2016-07-01 08:22:01 -070028 return "(" + fLeft->description() + " " + Token::OperatorName(fOperator) + " " +
29 fRight->description() + ")";
30 }
31
32 const std::unique_ptr<ASTExpression> fLeft;
33 const Token::Kind fOperator;
34 const std::unique_ptr<ASTExpression> fRight;
35
36 typedef ASTExpression INHERITED;
37};
38
39} // namespace
40
41#endif