chromium/third_party/skia/src/sksl/ir/SkSLLiteral.h

/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SKSL_FLOATLITERAL
#define SKSL_FLOATLITERAL

#include "include/core/SkTypes.h"
#include "src/sksl/SkSLBuiltinTypes.h"
#include "src/sksl/SkSLContext.h"
#include "src/sksl/SkSLDefines.h"
#include "src/sksl/SkSLPosition.h"
#include "src/sksl/ir/SkSLExpression.h"
#include "src/sksl/ir/SkSLIRNode.h"
#include "src/sksl/ir/SkSLType.h"

#include <cstdint>
#include <cinttypes>
#include <memory>
#include <optional>
#include <string>

namespace SkSL {

enum class OperatorPrecedence : uint8_t;

/**
 * A literal value. These can contain ints, floats, or booleans.
 */

class Literal : public Expression {};

}  // namespace SkSL

#endif