From: Jay Freeman (saurik) Date: Thu, 1 Oct 2009 22:07:04 +0000 (+0000) Subject: Implemented CYSelector::Output, split CYSelectorPart, and further enforced CYNext. X-Git-Tag: v0.9.432~386 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/62014ea9ffc6c31f053863a89d783475a3937d74?ds=sidebyside Implemented CYSelector::Output, split CYSelectorPart, and further enforced CYNext. --- diff --git a/Cycript.y b/Cycript.y index 46e81a4..31fd1bc 100644 --- a/Cycript.y +++ b/Cycript.y @@ -29,7 +29,7 @@ typedef struct { CYNumber *number_; CYParameter *parameter_; CYProperty *property_; - CYSelector *selector_; + CYSelectorPart *selector_; CYSource *source_; CYStatement *statement_; CYString *string_; @@ -1076,17 +1076,17 @@ SelectorExpressionOpt ; SelectorExpression_ - : WordOpt ":" SelectorExpressionOpt { $$ = new(driver.pool_) CYSelector($1, true, $3); } + : WordOpt ":" SelectorExpressionOpt { $$ = new(driver.pool_) CYSelectorPart($1, true, $3); } ; SelectorExpression : SelectorExpression_ { $$ = $1; } - | Word { $$ = new(driver.pool_) CYSelector($1, false, NULL); } + | Word { $$ = new(driver.pool_) CYSelectorPart($1, false, NULL); } ; PrimaryExpression_ : MessageExpression { $$ = $1; } - | "@selector" "(" SelectorExpression ")" { $$ = $3; } + | "@selector" "(" SelectorExpression ")" { $$ = new CYSelector($3); } ; /* }}} */ diff --git a/Output.cpp b/Output.cpp index edd262f..ecd39bb 100644 --- a/Output.cpp +++ b/Output.cpp @@ -288,10 +288,20 @@ void CYReturn::Output(std::ostream &out) const { void CYSelector::Output(std::ostream &out) const { out << '"'; - out << ""; + if (name_ != NULL) + name_->Output(out); out << '"'; } +void CYSelectorPart::Output(std::ostream &out) const { + if (name_ != NULL) + out << *name_; + if (value_) + out << ':'; + if (next_ != NULL) + next_->Output(out); +} + void CYSource::Show(std::ostream &out) const { for (const CYSource *next(this); next != NULL; next = next->next_) next->Output(out, false); diff --git a/Parser.hpp b/Parser.hpp index 2663eb8..b848c7b 100644 --- a/Parser.hpp +++ b/Parser.hpp @@ -17,6 +17,11 @@ struct CYNext { { } + CYNext(Type_ *next) : + next_(next) + { + } + void SetNext(Type_ *next) { next_ = next; } @@ -79,13 +84,14 @@ struct CYIdentifier : } }; -struct CYLabel { +struct CYLabel : + CYNext +{ CYIdentifier *identifier_; - CYLabel *next_; CYLabel(CYIdentifier *identifier, CYLabel *next) : - identifier_(identifier), - next_(next) + CYNext(next), + identifier_(identifier) { } }; @@ -167,17 +173,29 @@ struct CYLiteral : { }; -struct CYSelector : - CYLiteral +struct CYSelectorPart : + CYNext { CYWord *name_; bool value_; - CYSelector *after_; - CYSelector(CYWord *name, bool value, CYSelector *after) : + CYSelectorPart(CYWord *name, bool value, CYSelectorPart *next) : + CYNext(next), name_(name), - value_(value), - after_(after) + value_(value) + { + } + + virtual void Output(std::ostream &out) const; +}; + +struct CYSelector : + CYLiteral +{ + CYSelectorPart *name_; + + CYSelector(CYSelectorPart *name) : + name_(name) { } @@ -366,15 +384,16 @@ struct CYAssignment : virtual const char *Operator() const = 0; }; -struct CYArgument { +struct CYArgument : + CYNext +{ CYWord *name_; CYExpression *value_; - CYArgument *next_; CYArgument(CYWord *name, CYExpression *value, CYArgument *next = NULL) : + CYNext(next), name_(name), - value_(value), - next_(next) + value_(value) { } @@ -406,13 +425,14 @@ struct CYClause : virtual void Output(std::ostream &out) const; }; -struct CYElement { +struct CYElement : + CYNext +{ CYExpression *value_; - CYElement *next_; CYElement(CYExpression *value, CYElement *next) : - value_(value), - next_(next) + CYNext(next), + value_(value) { } @@ -467,14 +487,14 @@ struct CYDeclarations : }; struct CYParameter : + CYNext, CYThing { CYIdentifier *name_; - CYParameter *next_; CYParameter(CYIdentifier *name, CYParameter *next) : - name_(name), - next_(next) + CYNext(next), + name_(name) { } @@ -517,15 +537,16 @@ struct CYForIn : virtual void Output(std::ostream &out) const; }; -struct CYProperty { +struct CYProperty : + CYNext +{ CYName *name_; CYExpression *value_; - CYProperty *next_; CYProperty(CYName *name, CYExpression *value, CYProperty *next) : + CYNext(next), name_(name), - value_(value), - next_(next) + value_(value) { }