rtext 0.8.0 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +113 -84
- data/Project.yaml +14 -0
- data/RText_Protocol +47 -4
- data/lib/rtext/context_builder.rb +49 -8
- data/lib/rtext/default_completer.rb +212 -163
- data/lib/rtext/default_service_provider.rb +3 -3
- data/lib/rtext/frontend/connector.rb +122 -55
- data/lib/rtext/frontend/context.rb +12 -12
- data/lib/rtext/instantiator.rb +11 -3
- data/lib/rtext/language.rb +5 -5
- data/lib/rtext/serializer.rb +1 -1
- data/lib/rtext/service.rb +264 -253
- data/lib/rtext/tokenizer.rb +1 -1
- metadata +18 -43
- data/Rakefile +0 -46
- data/test/completer_test.rb +0 -606
- data/test/context_builder_test.rb +0 -948
- data/test/frontend/context_test.rb +0 -205
- data/test/instantiator_test.rb +0 -1691
- data/test/integration/backend.out +0 -13
- data/test/integration/crash_on_request_editor.rb +0 -12
- data/test/integration/ecore_editor.rb +0 -50
- data/test/integration/frontend.log +0 -36049
- data/test/integration/model/invalid_encoding.invenc +0 -2
- data/test/integration/model/test.crash_on_request +0 -18
- data/test/integration/model/test.crashing_backend +0 -18
- data/test/integration/model/test.dont_open_socket +0 -0
- data/test/integration/model/test.invalid_cmd_line +0 -0
- data/test/integration/model/test.not_in_rtext +0 -0
- data/test/integration/model/test_large_with_errors.ect3 +0 -43523
- data/test/integration/model/test_metamodel.ect +0 -24
- data/test/integration/model/test_metamodel2.ect +0 -5
- data/test/integration/model/test_metamodel_error.ect2 +0 -3
- data/test/integration/model/test_metamodel_ok.ect2 +0 -18
- data/test/integration/test.rb +0 -918
- data/test/link_detector_test.rb +0 -287
- data/test/message_helper_test.rb +0 -118
- data/test/rtext_test.rb +0 -11
- data/test/serializer_test.rb +0 -1004
- data/test/tokenizer_test.rb +0 -173
@@ -1,18 +0,0 @@
|
|
1
|
-
EPackage StatemachineMM {
|
2
|
-
EClass State, abstract: true {
|
3
|
-
EAttribute name, eType: /StatemachineMM/StringType
|
4
|
-
EReference parent, eType: /StatemachineMM/CompositeState, eOpposite: /StatemachineMM/CompositeState/substates
|
5
|
-
}
|
6
|
-
EClass SimpleState, eSuperTypes: [/StatemachineMM/State]
|
7
|
-
EClass CompositeState, eSuperTypes: [/StatemachineMM/State] {
|
8
|
-
EReference substates, upperBound: -1, containment: true, eType: /StatemachineMM/State, eOpposite: /StatemachineMM/State/parent
|
9
|
-
}
|
10
|
-
EClass Transition {
|
11
|
-
EReference target, upperBound: 1, eType: /StatemachineMM/State
|
12
|
-
EReference source, upperBound: 1, eType: /StatemachineMM/State
|
13
|
-
}
|
14
|
-
EDataType StringType
|
15
|
-
EAnnotation source: "test" {
|
16
|
-
EStringToStringMapEntry key: "kind", value: "package"
|
17
|
-
}
|
18
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
EPackage StatemachineMM {
|
2
|
-
EClass State, abstract: true {
|
3
|
-
EAttribute name, eType: /StatemachineMM/StringType
|
4
|
-
EReference parent, eType: /StatemachineMM/CompositeState, eOpposite: /StatemachineMM/CompositeState/substates
|
5
|
-
}
|
6
|
-
EClass SimpleState, eSuperTypes: [/StatemachineMM/State]
|
7
|
-
EClass CompositeState, eSuperTypes: [/StatemachineMM/State] {
|
8
|
-
EReference substates, upperBound: -1, containment: true, eType: /StatemachineMM/State, eOpposite: /StatemachineMM/State/parent
|
9
|
-
}
|
10
|
-
EClass Transition {
|
11
|
-
EReference target, upperBound: 1, eType: /StatemachineMM/State
|
12
|
-
EReference source, upperBound: 1, eType: /StatemachineMM/State
|
13
|
-
}
|
14
|
-
EDataType StringType
|
15
|
-
EAnnotation source: "test" {
|
16
|
-
EStringToStringMapEntry key: "kind", value: "package"
|
17
|
-
}
|
18
|
-
}
|
File without changes
|
File without changes
|
File without changes
|