Skip to content
Snippets Groups Projects
Commit e3550a8f authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Various fixes in comments

parent 3fd6858f
Branches
Tags
No related merge requests found
...@@ -52,7 +52,7 @@ public: ...@@ -52,7 +52,7 @@ public:
ExternalFunctionsTable external_functions_table; ExternalFunctionsTable external_functions_table;
//! Numerical constants table //! Numerical constants table
NumericalConstants num_constants; NumericalConstants num_constants;
//! Var Model Table used for storing info about trend component models //! Var Model Table used for storing info about VAR models
VarModelTable var_model_table; VarModelTable var_model_table;
//! Trend Component Model Table used for storing info about trend component models //! Trend Component Model Table used for storing info about trend component models
TrendComponentModelTable trend_component_model_table; TrendComponentModelTable trend_component_model_table;
......
...@@ -73,7 +73,7 @@ public: ...@@ -73,7 +73,7 @@ public:
//! Less comparison //! Less comparison
/*! Returns an IntMV, equal to 0 or 1 */ /*! Returns an IntMV, equal to 0 or 1 */
virtual shared_ptr<IntMV> is_less(const MacroValuePtr &mv) noexcept(false); virtual shared_ptr<IntMV> is_less(const MacroValuePtr &mv) noexcept(false);
//! Greater comparision //! Greater comparison
/*! Returns an IntMV, equal to 0 or 1 */ /*! Returns an IntMV, equal to 0 or 1 */
virtual shared_ptr<IntMV> is_greater(const MacroValuePtr &mv) noexcept(false); virtual shared_ptr<IntMV> is_greater(const MacroValuePtr &mv) noexcept(false);
//! Less or equal comparison //! Less or equal comparison
...@@ -202,7 +202,7 @@ public: ...@@ -202,7 +202,7 @@ public:
shared_ptr<IntMV> is_equal(const MacroValuePtr &mv) override; shared_ptr<IntMV> is_equal(const MacroValuePtr &mv) override;
//! Subscripting operator //! Subscripting operator
/*! Argument must be an ArrayMV<int>. Indexes begin at 1. /*! Argument must be an ArrayMV<int>. Indexes begin at 1.
If argument is a one-element array, returns an IntMV or StringMV. If argument is a one-element array, returns the corresponding array element.
Otherwise returns an array. */ Otherwise returns an array. */
MacroValuePtr subscript(const MacroValuePtr &mv) noexcept(false) override; MacroValuePtr subscript(const MacroValuePtr &mv) noexcept(false) override;
//! Returns a string containing the concatenation of string representations of elements //! Returns a string containing the concatenation of string representations of elements
...@@ -236,9 +236,8 @@ public: ...@@ -236,9 +236,8 @@ public:
shared_ptr<IntMV> is_equal(const MacroValuePtr &mv) override; shared_ptr<IntMV> is_equal(const MacroValuePtr &mv) override;
//! Subscripting operator //! Subscripting operator
/*! Argument must be an ArrayMV<int>. Indexes begin at 1. Returns a StringMV. */ /*! Argument must be an ArrayMV<int>. Indexes begin at 1. */
MacroValuePtr subscript(const MacroValuePtr &mv) noexcept(false) override; MacroValuePtr subscript(const MacroValuePtr &mv) noexcept(false) override;
//! Returns underlying string value
string toString() override; string toString() override;
string print() override; string print() override;
shared_ptr<IntMV> length() noexcept(false) override; shared_ptr<IntMV> length() noexcept(false) override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment