Skip to content

Commit

Permalink
* _clearMemo should be clearMemo
Browse files Browse the repository at this point in the history
  • Loading branch information
itod committed Apr 5, 2014
1 parent 1d947f3 commit 927dd48
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion res/PGClassImplementationTemplate.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
[super dealloc];
}
{%/if%}{%if enableMemoization %}
- (void)_clearMemo {
- (void)clearMemo {
{%for methodName in ruleMethodNames %} [_{{methodName}}_memo removeAllObjects];
{%/for%}}
{%/if%}
Expand Down
2 changes: 1 addition & 1 deletion test/AltParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_s_memo removeAllObjects];
[_a_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/CSSParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_stylesheet_memo removeAllObjects];
[_ruleset_memo removeAllObjects];
[_selectors_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/DelimitedParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_s_memo removeAllObjects];
}
Expand Down
2 changes: 1 addition & 1 deletion test/DotQuestionParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_a_memo removeAllObjects];
}
Expand Down
2 changes: 1 addition & 1 deletion test/DreadedParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_s_memo removeAllObjects];
[_a_memo removeAllObjects];
[_b_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/ElementParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_lists_memo removeAllObjects];
[_list_memo removeAllObjects];
[_elements_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/ExpressionActionsParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_expr_memo removeAllObjects];
[_orExpr_memo removeAllObjects];
[_orTerm_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/ExpressionParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_expr_memo removeAllObjects];
[_orExpr_memo removeAllObjects];
[_orTerm_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/GreedParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_a_memo removeAllObjects];
[_b_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/HTMLParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_anything_memo removeAllObjects];
[_scriptElement_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/LabelEBNFParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_s_memo removeAllObjects];
[_label_memo removeAllObjects];
[_expr_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/LabelRecursiveParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_s_memo removeAllObjects];
[_label_memo removeAllObjects];
[_expr_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/MethodsFactoredParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_method_memo removeAllObjects];
[_type_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/MethodsParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_method_memo removeAllObjects];
[_type_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/MiniMathParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_expr_memo removeAllObjects];
[_mult_memo removeAllObjects];
[_pow_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/MultipleParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_s_memo removeAllObjects];
[_ab_memo removeAllObjects];
[_a_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/NamedActionParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_a_memo removeAllObjects];
[_b_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/NegationParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_s_memo removeAllObjects];
[_foo_memo removeAllObjects];
}
Expand Down
2 changes: 1 addition & 1 deletion test/OptionalParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_s_memo removeAllObjects];
[_expr_memo removeAllObjects];
[_foo_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/PatternParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_s_memo removeAllObjects];
}
Expand Down
2 changes: 1 addition & 1 deletion test/SemanticPredicateParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_nonReserved_memo removeAllObjects];
}
Expand Down
2 changes: 1 addition & 1 deletion test/TDNSPredicateParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_expr_memo removeAllObjects];
[_orOrTerm_memo removeAllObjects];
Expand Down
2 changes: 1 addition & 1 deletion test/UnfinishedSeqParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void)dealloc {
[super dealloc];
}

- (void)_clearMemo {
- (void)clearMemo {
[_start_memo removeAllObjects];
[_a_memo removeAllObjects];
[_b_memo removeAllObjects];
Expand Down

0 comments on commit 927dd48

Please sign in to comment.