Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

VIATRA/DeveloperMeetingMinutes/Meeting20180419

Topics

pattern simpleNegation(p : EClassifier) {
    EClassifier(p); // not required here per se; added only for readability
    neg EClass(p);
}
 
 
pattern parameterCount(call : PatternCall, c) {
    c == count PatternCall.parameters(call, _);
}
 
 
pattern transitive(p : EClass) {
    EClass.eSuperTypes*(p, _p2);
}
 
 
pattern reachableTypes(p : EClass) {
    EClass.eStructuralFeatures.eType+(p, _p2);
}
  • Guest presentation from Kristóf Marussy

Minutes

  • VIATRA status
    • Quick summary of the features

Back to the top