aboutsummaryrefslogtreecommitdiff
path: root/docs/tutorial/LangImpl02.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial/LangImpl02.rst')
-rw-r--r--docs/tutorial/LangImpl02.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/tutorial/LangImpl02.rst b/docs/tutorial/LangImpl02.rst
index ac8d2d798743..4be447eb5ba3 100644
--- a/docs/tutorial/LangImpl02.rst
+++ b/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.