diff options
Diffstat (limited to 'llvm/docs/tutorial/LangImpl02.rst')
-rw-r--r-- | llvm/docs/tutorial/LangImpl02.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/docs/tutorial/LangImpl02.rst b/llvm/docs/tutorial/LangImpl02.rst index ac8d2d79874..4be447eb5ba 100644 --- a/llvm/docs/tutorial/LangImpl02.rst +++ b/llvm/docs/tutorial/LangImpl02.rst @@ -119,6 +119,8 @@ way to talk about functions themselves: public: PrototypeAST(const std::string &name, std::vector<std::string> Args) : Name(name), Args(std::move(Args)) {} + + const std::string &getName() const { return Name; } }; /// FunctionAST - This class represents a function definition itself. |