blob: 9a24970262233123e7ac2ee889e4ae8a40b75256 [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/**
Ethan Nicholas0df1b042017-03-31 13:56:23 -040017 * Represents a binary operation, with the operator represented by the token's type.
ethannicholasb3058bd2016-07-01 08:22:01 -070018 */
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 Nicholas0df1b042017-03-31 13:56:23 -040027 String 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