Skip to content

Commit

Permalink
Restore MixinDefinition.getOuterMixinDefinition()
Browse files Browse the repository at this point in the history
Got lost with the changes for the object literals.
Used to be called `getOuter()`, new name is a bit more specific.

Signed-off-by: Stefan Marr <git@stefan-marr.de>
  • Loading branch information
smarr committed Aug 11, 2017
1 parent 52c7832 commit 1a8c9f1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/som/compiler/MixinDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,13 @@ public SSymbol getName() {
return name;
}

/**
* Used by the SOMns Language Server.
*/
public MixinDefinition getOuterMixinDefinition() {
return instanceScope.getOuterMixin().getMixinDefinition();
}

public SSymbol getPrimaryFactorySelector() {
return primaryFactoryName;
}
Expand Down

0 comments on commit 1a8c9f1

Please sign in to comment.