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

Difference between revisions of "VIATRA/DeveloperMeetingMinutes/Meeting20180419"

(Created page with "== Topics == * {{VIATRA-Status}} * VIATRA 2.0 status ** Reflexive transitive closure merged ** P2 repository and download page updated *** https://www.eclipse.org/viatra/downl...")
 
 
Line 8: Line 8:
 
*** https://bugs.eclipse.org/bugs/show_bug.cgi?id=530883
 
*** https://bugs.eclipse.org/bugs/show_bug.cgi?id=530883
  
<source>
+
<source lang="java">
 
pattern simpleNegation(p : EClassifier) {
 
pattern simpleNegation(p : EClassifier) {
 
     EClassifier(p); // not required here per se; added only for readability
 
     EClassifier(p); // not required here per se; added only for readability

Latest revision as of 07:48, 2 May 2018

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