This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support multiple STL files across same module (#10)
* Support multiple STL files across same module Modules can be split across multiple files. Example usage is reflected in example/example.test, which imports example_base.stl (event definitions, transition definitions, etc.) and example.stl (transition instances). * Allow STL constants to be defined in manifest Constants can be declared in the STL without a value, and then defined in the manifest via the 'constants' dictionary entry. Constants are referenced in the manifest by '<module>::<constant name>'. * Pass --manifest-args as a list instead of a string If a manifest variable was a string with a space in it (for example, --manifest-args="the_string='this has spaces in it'"), it could not be parsed since we were splitting on whitespace. Now, we just pass the args as a list (e.g. --manifest-args "this_string='has spaces'" "foo='bar'"). * Fixed quotes in README.md Example code and commands should be copy/pastable directly from the README. * Change Uniqueness qualifiers to not require previous value This is a simplification of the built-in UniqueInt and UniqueString qualifiers.
- Loading branch information
Showing
13 changed files
with
502 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.