-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Resolve unit iff unit identifier present
Add corresponding test case For issue #177
- Loading branch information
Showing
5 changed files
with
1,022 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
AADL_VERSION=-aadlv2 | ||
OCARINA_FLAGS= -f -g aadl | ||
|
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,17 @@ | ||
property set ps is | ||
|
||
Position_In_File: record ( line : aadlinteger ; column: aadlinteger;) | ||
applies to (data); | ||
|
||
end ps; | ||
|
||
package foo | ||
public | ||
with PS; | ||
|
||
DATA T_Int8 | ||
PROPERTIES | ||
PS::Position_In_File => [ line => 10 ; column => 1 ; ]; | ||
end T_Int8; | ||
|
||
end foo; |
Oops, something went wrong.