sysml-v2-parser 0.23.0

SysML v2 textual notation parser for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ExpressionClassificationDemo {
	view def FilteredView {
		filter @SysML::PartUsage or @SysML::PortUsage;
		filter not @SysML::ConnectionUsage;
		filter @Approval and Approval::approved;
		filter guardExpr;
	}

	state def GuardedState {
		transition t
			if guardExpr
			then idle;
	}
}