Operations from super classes of lower-level classes not callable

Issue #253 resolved
Matthias Schoettle created an issue

Given the following scenario/model, the operations from the super class cannot be called in the higher-level aspect.

Lower-level Aspect A

  • Class |A (with operations) with super class AS (with operations)

Higher-level Aspect B

  • Class B (with operations)
  • There is a depends instantiation with A (usually from a reused concern) with the following mapping:
  • |A --> B
  • Class Application with one operation

Actual result:

When defining the operation in Application and calling B, the operations from AS are not shown.

It seems that only super types of the current class are retrieved.

Comments (1)

  1. Matthias Schoettle reporter

    Resolves #253: Changes the collection of classifiers for a class by retrieving the super types for all classifiers that were found instead of just the given class.

    → <<cset 79802d73c98a>>

  2. Log in to comment