Skip to content

Commit

Permalink
I decided to only change the documentation (not rename the ivar in RB…
Browse files Browse the repository at this point in the history
…ArrayNode).

fixes pharo-project#3228
  • Loading branch information
MarcusDenker committed Dec 6, 2019
1 parent fb9870f commit bad2c8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AST-Core/RBArrayNode.class.st
Expand Up @@ -5,7 +5,7 @@ Instance Variables
left: <Integer | nil> position of {
periods: <SequenceableCollection of: Integer> the positions of all the periods that separate the statements
right: <Integer | nil> position of }
statements: <SequenceableCollection of: RBStatementNode> the statement nodes
statements: <SequenceableCollection of: RBValueNode> the statement nodes
"
Class {
#name : #RBArrayNode,
Expand Down
2 changes: 1 addition & 1 deletion src/AST-Core/RBSequenceNode.class.st
Expand Up @@ -4,7 +4,7 @@ RBSequenceNode is an AST node that represents a sequence of statements. Both RBB
Instance Variables:
leftBar <Integer | nil> the position of the left | in the temporaries definition
rightBar <Integer | nil> the position of the right | in the temporaries definition
statements <SequenceableCollection of: RBStatementNode> the statement nodes
statements <SequenceableCollection of: RBReturnNode or RBValueNode> the statement nodes
periods <SequenceableCollection of: Integer> the positions of all the periods that separate the statements
temporaries <SequenceableCollection of: RBVariableNode> the temporaries defined
Expand Down

0 comments on commit bad2c8c

Please sign in to comment.