We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663d7ba commit 36405feCopy full SHA for 36405fe
1 file changed
include/teascript/Engine.hpp
@@ -65,8 +65,8 @@ class Engine : public EngineBase
65
/// \throw May throw exception::redefinition_of_variable or a different exception based on exception::eval_eror/runtime_error.
66
void AddValueObject( std::string const &rName, ValueObject val ) override;
67
68
- /// Evaluates the given \param rContent as TeaScript.
69
- /// This implementation invokes parsing and then evaluates the produced AST recursively.
+ /// Evaluates/Executes the given content as TeaScript.
+ /// Depending on the mode the content will be either parsed and evaluated or parsed, compiled and executed.
70
/// \param rContent The content to be evaluated.
71
/// \param rName An arbitrary user defined name for referring to the content.
72
/// \returns the result as ValueObject.
0 commit comments