Commit bd93dd31 authored by Daniel Honsel's avatar Daniel Honsel
Browse files

fixed formal parameters scope issue

parent 8f35470e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -219,6 +219,10 @@ class TTCN3ScopeHelper {
				list.add(p.template)
			} else if (p.value != null) {
				list.add(p.value)
			} else if (p.port != null) {
				list.add(p.port)
			} else if (p.timer != null) {
				list.add(p.timer)
			}
		}
	}