Loading de.ugoe.cs.swe.TTCN3/src/de/ugoe/cs/swe/common/TTCN3ScopeHelper.xtend +20 −0 Original line number Diff line number Diff line Loading @@ -362,6 +362,26 @@ class TTCN3ScopeHelper { list } def static Iterable<RefValueElement> altstepLocalParameter(AltstepDef altstep) { val list = newArrayList if (altstep.params == null) return list; for (p : altstep.params.params) { if (p.timer != null) { list.add(p.timer) } else if (p.value != null) { list.add(p.value) } else if (p.template != null) { list.add(p.template) } else if (p.port != null) { list.add(p.port) } } list } def static void componentScopeValueRefs(ComponentDef component, ArrayList<EObject> list, boolean searchTimer, boolean searchVar, boolean searchTemplate) { Loading Loading
de.ugoe.cs.swe.TTCN3/src/de/ugoe/cs/swe/common/TTCN3ScopeHelper.xtend +20 −0 Original line number Diff line number Diff line Loading @@ -362,6 +362,26 @@ class TTCN3ScopeHelper { list } def static Iterable<RefValueElement> altstepLocalParameter(AltstepDef altstep) { val list = newArrayList if (altstep.params == null) return list; for (p : altstep.params.params) { if (p.timer != null) { list.add(p.timer) } else if (p.value != null) { list.add(p.value) } else if (p.template != null) { list.add(p.template) } else if (p.port != null) { list.add(p.port) } } list } def static void componentScopeValueRefs(ComponentDef component, ArrayList<EObject> list, boolean searchTimer, boolean searchVar, boolean searchTemplate) { Loading