ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 1 | /* |
| 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 | */ |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame^] | 7 | |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 8 | #ifndef SKSL_FUNCTIONDEFINITION |
| 9 | #define SKSL_FUNCTIONDEFINITION |
| 10 | |
| 11 | #include "SkSLBlock.h" |
| 12 | #include "SkSLFunctionDeclaration.h" |
| 13 | #include "SkSLProgramElement.h" |
| 14 | |
| 15 | namespace SkSL { |
| 16 | |
| 17 | /** |
| 18 | * A function definition (a declaration plus an associated block of code). |
| 19 | */ |
| 20 | struct FunctionDefinition : public ProgramElement { |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame^] | 21 | FunctionDefinition(Position position, const FunctionDeclaration& declaration, |
Ethan Nicholas | e1d9cb8 | 2017-02-06 18:53:07 +0000 | [diff] [blame] | 22 | std::unique_ptr<Block> body) |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 23 | : INHERITED(position, kFunction_Kind) |
ethannicholas | d598f79 | 2016-07-25 10:08:54 -0700 | [diff] [blame] | 24 | , fDeclaration(declaration) |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 25 | , fBody(std::move(body)) {} |
| 26 | |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame^] | 27 | String description() const override { |
ethannicholas | d598f79 | 2016-07-25 10:08:54 -0700 | [diff] [blame] | 28 | return fDeclaration.description() + " " + fBody->description(); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 29 | } |
| 30 | |
ethannicholas | d598f79 | 2016-07-25 10:08:54 -0700 | [diff] [blame] | 31 | const FunctionDeclaration& fDeclaration; |
Ethan Nicholas | e1d9cb8 | 2017-02-06 18:53:07 +0000 | [diff] [blame] | 32 | const std::unique_ptr<Block> fBody; |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 33 | |
| 34 | typedef ProgramElement INHERITED; |
| 35 | }; |
| 36 | |
| 37 | } // namespace |
| 38 | |
| 39 | #endif |