|
Class: ParseTreeRewriter
Object
|
+--RBProgramNodeVisitor
|
+--ParseTreeSearcher
|
+--ParseTreeRewriter
|
+--ParseTreeSourceRewriter
- Package:
- stx:goodies/refactoryBrowser/parser
- Category:
- Refactory-ParseTree Matching
- Version:
- rev:
1.38
date: 2023/04/13 09:19:02
- user: cg
- file: ParseTreeRewriter.st directory: goodies/refactoryBrowser/parser
- module: stx stc-classLibrary: parser
ParseTreeRewriter walks over and transforms its BRProgramNode (tree). If the tree is modified, then answer is set to true, and the modified tree can be retrieved by the #tree method.
Instance Variables:
tree <BRProgramNode> the parse tree we're transforming
accessing
-
> replace:with:in:">replace: code with: newCode in: aParseTree
-
-
> replace:with:in:onInterval:">replace: code with: newCode in: aParseTree onInterval: anInterval
-
-
> replaceStatements:with:in:onInterval:">replaceStatements: code with: newCode in: aParseTree onInterval: anInterval
-
instance creation
-
> classVariable:getter:setter:">classVariable: aVarName getter: getMethod setter: setMethod
-
-
> new">new
-
A small hack to use ParseTreeSourceRewriter if all refactorings. should not harm...
Usage example(s):
ParseTreeRewriter new.
UserPreferences current at: #useParseTreeSourceRewriterForAllRewrites put: false.
UserPreferences current at: #useParseTreeSourceRewriterForAllRewrites put: true
|
-
> removeTemporaryNamed:">removeTemporaryNamed: aName
-
-
> rename:to:">rename: varName to: newVarName
-
-
> rename:to:handler:">rename: varName to: newVarName handler: aBlock
-
A rewriter to rename varName to newVarName, evaluating aBlock if there is a
temporary variable with the same name as newVarName.
aBlock may be a zero-arg block, or one accepting the matching node as arg.
This does not change temporary variables with varName.
-
> replace:with:method:">replace: code with: newCode method: aBoolean
-
-
> replaceLiteral:with:">replaceLiteral: literal with: newLiteral
-
duplicate code.
-
> valueHolderForVariable:holderMethod:">valueHolderForVariable: aVarName holderMethod: aSelector
-
-
> variable:getter:setter:">variable: aVarName getter: getMethod setter: setMethod
-
-
> variable:getter:setter:receiver:">variable: aVarName getter: getMethod setter: setMethod receiver: aString
-
private
-
> replaceLiteral:with:inToken:">replaceLiteral: literal with: newLiteral inToken: literalToken
-
if literalToken's value is literal, replace it by newLiteral and return true.
otherwise, return false
accessing
-
> executeTree:">executeTree: aParseTree
-
(comment from inherited method)
Save our current context, in case someone is performing another search inside a match.
Notice: kept for backward compatibility;
cannot forward this to executeTree:in: here, because not everyone (SmallLint and others)
are guaranteed to implement it (but instead redefine executeTree:).
-
> executeTree:in:">executeTree: aParseTree in: optionalClassBeingProcessed
-
(comment from inherited method)
Save our current context, in case someone is performing another search inside a match.
-
> forgetReplacements">forgetReplacements
-
Nothing to do here, to be polymorph with ParseTreeSourceRewriter
-
> replacements">replacements
-
Nothing returned here, to be polymorph with ParseTreeSourceRewriter
-
> tree">tree
-
converting
-
> asSearcher">asSearcher
-
obsolete
-
> buildMethodParseTreeRuleFor:">buildMethodParseTreeRuleFor: aReplaceCondition
-
-
> buildParseTreeRuleFor:">buildParseTreeRuleFor: aReplaceCondition
-
private
-
> foundMatch">foundMatch
-
-
> lookForMoreMatchesInContext:">lookForMoreMatchesInContext: oldContext
-
queries
-
> isRewritingOriginalSource">isRewritingOriginalSource
-
replacing
-
> replace:with:">replace: searchString with: replaceString
-
-
> replace:with:keepComments:">replace: searchString with: replaceString keepComments: keepComments
-
if keepComments is true, comments in the replaceString will be handled
-
> replace:with:thenDo:">replace: searchString with: replaceString thenDo: actionOnReplacedNode
-
-
> replace:with:when:">replace: searchString with: replaceString when: aBlock
-
-
> replace:withValueFrom:">replace: searchString withValueFrom: replaceBlock
-
-
> replace:withValueFrom:when:">replace: searchString withValueFrom: replaceBlock when: conditionBlock
-
-
> replaceArgument:with:">replaceArgument: searchString with: replaceString
-
-
> replaceArgument:with:when:">replaceArgument: searchString with: replaceString when: aBlock
-
-
> replaceArgument:withValueFrom:">replaceArgument: searchString withValueFrom: replaceBlock
-
-
> replaceArgument:withValueFrom:when:">replaceArgument: searchString withValueFrom: replaceBlock when: conditionBlock
-
-
> replaceLiteral:with:">replaceLiteral: literal with: newLiteral
-
-
> replaceMethod:with:">replaceMethod: searchString with: replaceString
-
-
> replaceMethod:with:when:">replaceMethod: searchString with: replaceString when: aBlock
-
-
> replaceMethod:withValueFrom:">replaceMethod: searchString withValueFrom: replaceBlock
-
-
> replaceMethod:withValueFrom:when:">replaceMethod: searchString withValueFrom: replaceBlock when: conditionBlock
-
-
> replaceTree:withTree:">replaceTree: searchTree withTree: replaceTree
-
-
> replaceTree:withTree:when:">replaceTree: searchTree withTree: replaceTree when: aBlock
-
-
> replaceVariable:with:">replaceVariable: variable with: newVariable
-
Transcript showCR:'replacing variable ',variable,' by ',newVariable.
visiting
-
> visitArguments:">visitArguments: aNodeCollection
-
(comment from inherited method)
returns aNodeCollection (actually: whatever its do: method returns)
(not sure if it must do so, or if it is sloppy programming)
visitor-double dispatching
-
> acceptAssignmentNode:">acceptAssignmentNode: anAssignmentNode
-
-
> acceptBlockNode:">acceptBlockNode: aBlockNode
-
-
> acceptCascadeNode:">acceptCascadeNode: aCascadeNode
-
-
> acceptMessageNode:">acceptMessageNode: aMessageNode
-
-
> acceptMethodNode:">acceptMethodNode: aMethodNode
-
-
> acceptOptimizedNode:">acceptOptimizedNode: anOptimizedNode
-
-
> acceptReturnNode:">acceptReturnNode: aReturnNode
-
-
> acceptSequenceNode:">acceptSequenceNode: aSequenceNode
-
|