now is compiling and passing soltest...but I think there may be a few more things to do

This commit is contained in:
RJ Catalano
2015-12-15 12:22:52 -06:00
parent 5a462afd03
commit aebce8a1d5
2 changed files with 9 additions and 5 deletions
+3 -1
View File
@@ -1150,10 +1150,12 @@ public:
virtual void accept(ASTConstVisitor& _visitor) const override;
std::vector<ASTPointer<Expression>> const& components() const { return m_components; }
bool isInlineArray() const { return m_isArray; }
private:
std::vector<ASTPointer<Expression>> m_components;
bool isInlineArray() const { return m_isArray; }
bool m_isArray;
};
/**