blob: bde1e4aec5627f0ccabc34acd893dd58352f70d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* 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
|