-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added first requirement for
lobster-trlc
(#90)
Co-authored-by: Christoph Klöffel <[email protected]>
- Loading branch information
1 parent
ac92a68
commit 5966e49
Showing
3 changed files
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package trlc_req | ||
|
||
type Tool_Requirement { | ||
description ''' | ||
The content of the requirement. | ||
A tool requirement describes the behaviour of a lobster tool from the point of view of the user. | ||
It does not describe implementation details. | ||
''' String | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package trlc_req | ||
|
||
Tool_Requirement OUTPUT_FILE { | ||
description = ''' | ||
If a output file is specified as command line argument, then the output must be written into that file. | ||
Otherwise, the output shall be written to 'trlc.lobster'. | ||
''' | ||
} |
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