blob: bde1e4aec5627f0ccabc34acd893dd58352f70d3 [file] [log] [blame]
/*
* 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_ASTFIELDSUFFIX
#define SKSL_ASTFIELDSUFFIX
#include "SkSLASTSuffix.h"
namespace SkSL {
/**
* A dotted identifier of the form ".foo". We refer to these as "fields" at parse time even if it is
* actually vector swizzle (which looks the same to the parser).
*/
struct ASTFieldSuffix : public ASTSuffix {
ASTFieldSuffix(Position position, String field)
: INHERITED(position, ASTSuffix::kField_Kind)
, fField(std::move(field)) {}
String description() const override {
return "." + fField;
}
String fField;
typedef ASTSuffix INHERITED;
};
} // namespace
#endif