sysmlpy 0.33.0__tar.gz → 0.33.2__tar.gz
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.
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/PKG-INFO +13 -5
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/README.md +12 -4
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/pyproject.toml +1 -1
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/__init__.py +1 -1
- sysmlpy-0.33.2/src/sysmlpy/antlr/SysMLv2Parser.interp +981 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2Parser.py +583 -573
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr_visitor.py +13 -7
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Parser.g4 +1 -1
- sysmlpy-0.33.2/src/sysmlpy/grammar/antlr4/SysMLv2Parser.interp +981 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Parser.py +583 -573
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/classes.py +3 -0
- sysmlpy-0.33.0/src/sysmlpy/antlr/SysMLv2Parser.interp +0 -981
- sysmlpy-0.33.0/src/sysmlpy/grammar/antlr4/SysMLv2Parser.interp +0 -981
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/LICENSE +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/__main__.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/README.md +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2Lexer.interp +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2Lexer.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2Lexer.tokens +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2Parser.tokens +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2ParserListener.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/SysMLv2ParserVisitor.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.interp +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.tokens +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/antlr_parser.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/definition.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/examples/attribute_values.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/examples/part_attributes.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/examples/tuples_sequences.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/formatting.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/README.md +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.g4 +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.interp +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.tokens +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2Parser.tokens +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2ParserListener.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/SysMLv2ParserVisitor.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/desc.xml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/examples/camera.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/examples/toaster-system.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/examples/vehicle-model.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/grammar/antlr4/pom.xml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/LICENSE +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/README.md +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/__init__.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Analysis/AnalysisTooling.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Analysis/SampledFunctions.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Analysis/StateSpaceRepresentation.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Analysis/TradeStudies.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Cause and Effect/CausationConnections.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Cause and Effect/CauseAndEffect.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Geometry/ShapeItems.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Geometry/SpatialItems.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Metadata/ImageMetadata.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Metadata/ModelingMetadata.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Metadata/ParametersOfInterestMetadata.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Metadata/RiskMetadata.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQ.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQAcoustics.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQAtomicNuclear.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQBase.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQCharacteristicNumbers.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQChemistryMolecular.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQCondensedMatter.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQElectromagnetism.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQInformation.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQLight.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQMechanics.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQSpaceTime.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/ISQThermodynamics.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/MeasurementRefCalculations.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/MeasurementReferences.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/Quantities.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/QuantityCalculations.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/SI.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/SIPrefixes.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/TensorCalculations.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/Time.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/USCustomaryUnits.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Quantities and Units/VectorCalculations.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Requirement Derivation/DerivationConnections.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/domain/Requirement Derivation/RequirementDerivation.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Base.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/BaseFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/BooleanFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Clocks.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/CollectionFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Collections.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/ComplexFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/ControlFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/ControlPerformances.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/DataFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/FeatureReferencingPerformances.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/IntegerFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/KerML.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Links.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Metaobjects.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/NaturalFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/NumericalFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Objects.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Observation.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/OccurrenceFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Occurrences.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Performances.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/RationalFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/RealFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/ScalarFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/ScalarValues.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/SequenceFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/SpatialFrames.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/StatePerformances.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/StringFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Transfers.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/TransitionPerformances.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/TrigFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/Triggers.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/VectorFunctions.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/kernel/VectorValues.kerml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Actions.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Allocations.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/AnalysisCases.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Attributes.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Calculations.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Cases.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Connections.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Constraints.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Flows.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Interfaces.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Items.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Metadata.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Parts.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Ports.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Requirements.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/StandardViewDefinitions.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/States.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/SysML.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/UseCases.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/VerificationCases.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/library/systems/Views.sysml +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/navigate.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/plantuml.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/project.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/semantic.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/store.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/us_customary_units.txt +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/usage.py +0 -0
- {sysmlpy-0.33.0 → sysmlpy-0.33.2}/src/sysmlpy/validator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sysmlpy
|
|
3
|
-
Version: 0.33.
|
|
3
|
+
Version: 0.33.2
|
|
4
4
|
Summary:
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Jon R. Fox (mycr0ft)
|
|
@@ -805,6 +805,11 @@ See [`docs/plantuml-examples/`](docs/plantuml-examples/) for all rendered exampl
|
|
|
805
805
|
|
|
806
806
|
## Changelog
|
|
807
807
|
|
|
808
|
+
- **v0.32.5** — Fix double-space in dump output when `:>>` (redefinition) or
|
|
809
|
+
`: ` (typing) appears after `attribute`, `part`, or other usage keywords.
|
|
810
|
+
Root cause: `Redefinitions.keyword` and `TypedBy.keyword` had leading spaces
|
|
811
|
+
that doubled the separator in `AttributeUsage.dump()` and similar join points.
|
|
812
|
+
|
|
808
813
|
- **v0.33.0** — Fix three parser issues from PARSING_ISSUES.md:
|
|
809
814
|
1. `subject` with qualified name (e.g. `subject SystemGateway::System_Driver;`) now parses and round-trips inside requirement def bodies.
|
|
810
815
|
2. `guard` keyword now accepted as alternative to `if` in transition guard expressions (e.g. `transition first A guard condition then B;`).
|
|
@@ -812,10 +817,13 @@ See [`docs/plantuml-examples/`](docs/plantuml-examples/) for all rendered exampl
|
|
|
812
817
|
|
|
813
818
|
Also: `rendering` usage now supported inside definition bodies (previously silently dropped), `RenderingUsage` dispatch added to `Package.load_from_grammar`, `ViewRenderingMember`/`ViewRenderingUsage` grammar classes added, `ViewDefinitionBody`/`ViewBody` grammar classes replace `DefinitionBody` for view contexts.
|
|
814
819
|
|
|
815
|
-
- **v0.
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
820
|
+
- **v0.33.1** — Fix `guard` keyword preservation in round-trip: `GuardExpressionMember.get_definition()` now includes the `keyword` field so `guard` is no longer silently converted to `if` on dump.
|
|
821
|
+
|
|
822
|
+
- **v0.33.2** — Fix two user-reported bugs:
|
|
823
|
+
1. `PerformedActionUsage` regression: `get_definition()` no longer references non-existent `self.keyword` and `self.children` attributes.
|
|
824
|
+
2. Double-quoted strings now accepted in `annotation` directives per SysML v2 spec (string literals use `"..."`, single quotes `'...'` are for escaped names only).
|
|
825
|
+
|
|
826
|
+
Rejected: `interface` as unquoted identifier (use `'interface'` per spec), guard after `then` in transitions (guard must precede `then` per spec).
|
|
819
827
|
|
|
820
828
|
## Conformance
|
|
821
829
|
|
|
@@ -780,6 +780,11 @@ See [`docs/plantuml-examples/`](docs/plantuml-examples/) for all rendered exampl
|
|
|
780
780
|
|
|
781
781
|
## Changelog
|
|
782
782
|
|
|
783
|
+
- **v0.32.5** — Fix double-space in dump output when `:>>` (redefinition) or
|
|
784
|
+
`: ` (typing) appears after `attribute`, `part`, or other usage keywords.
|
|
785
|
+
Root cause: `Redefinitions.keyword` and `TypedBy.keyword` had leading spaces
|
|
786
|
+
that doubled the separator in `AttributeUsage.dump()` and similar join points.
|
|
787
|
+
|
|
783
788
|
- **v0.33.0** — Fix three parser issues from PARSING_ISSUES.md:
|
|
784
789
|
1. `subject` with qualified name (e.g. `subject SystemGateway::System_Driver;`) now parses and round-trips inside requirement def bodies.
|
|
785
790
|
2. `guard` keyword now accepted as alternative to `if` in transition guard expressions (e.g. `transition first A guard condition then B;`).
|
|
@@ -787,10 +792,13 @@ See [`docs/plantuml-examples/`](docs/plantuml-examples/) for all rendered exampl
|
|
|
787
792
|
|
|
788
793
|
Also: `rendering` usage now supported inside definition bodies (previously silently dropped), `RenderingUsage` dispatch added to `Package.load_from_grammar`, `ViewRenderingMember`/`ViewRenderingUsage` grammar classes added, `ViewDefinitionBody`/`ViewBody` grammar classes replace `DefinitionBody` for view contexts.
|
|
789
794
|
|
|
790
|
-
- **v0.
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
795
|
+
- **v0.33.1** — Fix `guard` keyword preservation in round-trip: `GuardExpressionMember.get_definition()` now includes the `keyword` field so `guard` is no longer silently converted to `if` on dump.
|
|
796
|
+
|
|
797
|
+
- **v0.33.2** — Fix two user-reported bugs:
|
|
798
|
+
1. `PerformedActionUsage` regression: `get_definition()` no longer references non-existent `self.keyword` and `self.children` attributes.
|
|
799
|
+
2. Double-quoted strings now accepted in `annotation` directives per SysML v2 spec (string literals use `"..."`, single quotes `'...'` are for escaped names only).
|
|
800
|
+
|
|
801
|
+
Rejected: `interface` as unquoted identifier (use `'interface'` per spec), guard after `then` in transitions (guard must precede `then` per spec).
|
|
794
802
|
|
|
795
803
|
## Conformance
|
|
796
804
|
|