sysml_v2_parser/ast/
kerml_fallback.rs1#[derive(Debug, Clone, PartialEq, Eq)]
5pub struct KermlSemanticDecl {
6 pub bnf_production: String,
7 pub text: String,
8}
9
10#[derive(Debug, Clone, PartialEq, Eq)]
12pub struct KermlFeatureDecl {
13 pub bnf_production: String,
14 pub text: String,
15}
16
17#[derive(Debug, Clone, PartialEq, Eq)]
19pub struct FeatureDecl {
20 pub keyword: String,
21 pub text: String,
22}
23
24#[derive(Debug, Clone, PartialEq, Eq)]
26pub struct ClassifierDecl {
27 pub keyword: String,
28 pub text: String,
29}
30
31#[derive(Debug, Clone, PartialEq, Eq)]
34pub struct ExtendedLibraryDecl {
35 pub bnf_production: String,
36 pub text: String,
37}