|
24 | 24 | | `ifClauseOwner` | `FASTPyExpression` | `expression` | `FASTPyIfClause` | | |
25 | 25 | | `keywordArgumentOwner` | `FASTPyExpression` | `value` | `FASTPyKeywordArgument` | Keyword argument from which I am the value (if it's the case)| |
26 | 26 | | `lambdaOwner` | `FASTPyExpression` | `expression` | `FASTPyLambda` | | |
27 | | -| `listSplatOwner` | `FASTPyExpression` | `iterable` | `FASTPyListSplat` | List splat unpacking me (if it's the case)| |
28 | 27 | | `pairKeyOwner` | `FASTTExpression` | `key` | `FASTPyPair` | | |
29 | 28 | | `pairValueOwner` | `FASTTExpression` | `value` | `FASTPyPair` | | |
30 | 29 | | `parentAssertStatement` | `FASTPyExpression` | `expressions` | `FASTPyAssertStatement` | The assert statement that own the expression (if it's the case)| |
@@ -76,7 +75,6 @@ Class { |
76 | 75 | '#ifClauseOwner => FMOne type: #FASTPyIfClause opposite: #expression', |
77 | 76 | '#keywordArgumentOwner => FMOne type: #FASTPyKeywordArgument opposite: #value', |
78 | 77 | '#lambdaOwner => FMOne type: #FASTPyLambda opposite: #expression', |
79 | | - '#listSplatOwner => FMOne type: #FASTPyListSplat opposite: #iterable', |
80 | 78 | '#parentAssertStatement => FMOne type: #FASTPyAssertStatement opposite: #expressions', |
81 | 79 | '#parentAwait => FMOne type: #FASTPyAwait opposite: #expression', |
82 | 80 | '#parentComparisonOperator => FMOne type: #FASTPyComparisonOperator opposite: #operands', |
@@ -491,31 +489,6 @@ FASTPyExpression >> lambdaOwnerGroup [ |
491 | 489 | ^ MooseSpecializedGroup with: self lambdaOwner |
492 | 490 | ] |
493 | 491 |
|
494 | | -{ #category : 'accessing' } |
495 | | -FASTPyExpression >> listSplatOwner [ |
496 | | - "Relation named: #listSplatOwner type: #FASTPyListSplat opposite: #iterable" |
497 | | - |
498 | | - <generated> |
499 | | - <FMComment: 'List splat unpacking me (if it''s the case)'> |
500 | | - <container> |
501 | | - <derived> |
502 | | - ^ listSplatOwner |
503 | | -] |
504 | | - |
505 | | -{ #category : 'accessing' } |
506 | | -FASTPyExpression >> listSplatOwner: anObject [ |
507 | | - |
508 | | - <generated> |
509 | | - listSplatOwner := anObject |
510 | | -] |
511 | | - |
512 | | -{ #category : 'navigation' } |
513 | | -FASTPyExpression >> listSplatOwnerGroup [ |
514 | | - <generated> |
515 | | - <navigation: 'ListSplatOwner'> |
516 | | - ^ MooseSpecializedGroup with: self listSplatOwner |
517 | | -] |
518 | | - |
519 | 492 | { #category : 'accessing' } |
520 | 493 | FASTPyExpression >> parentAssertStatement [ |
521 | 494 | "Relation named: #parentAssertStatement type: #FASTPyAssertStatement opposite: #expressions" |
|
0 commit comments