-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote branch 'origin/master' into edge
- Loading branch information
Showing
11 changed files
with
3,609 additions
and
202 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 @@ | ||
project Extended is | ||
type Extended_Type is ("a"); | ||
Extended_Variable := ""; | ||
for Warning_Message use "warning message"; | ||
package Emulator is | ||
Extended_Emulator_Variable := ""; | ||
for Board use ""; | ||
end Emulator; | ||
end Extended; |
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 @@ | ||
project Imported is | ||
type Imported_Type is ("a"); | ||
Imported_Variable := ""; | ||
for Warning_Message use "warning message"; | ||
package Compiler is | ||
Imported_Compiler_Variable := ""; | ||
for Local_Configuration_Pragmas use ""; | ||
end Compiler; | ||
end Imported; |
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 @@ | ||
project Imported_Limited is | ||
type Imported_Limited_Type is ("a"); | ||
Imported_Limited_Variable := ""; | ||
for Warning_Message use "warning message"; | ||
package Compiler is | ||
Imported_Limited_Compiler_Variable := ""; | ||
for Local_Configuration_Pragmas use ""; | ||
end Compiler; | ||
end Imported_Limited; |
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,68 @@ | ||
with "imported"; | ||
limited with "imported_limited"; | ||
project Prj extends "extended" is | ||
|
||
type T1 is ("a"); | ||
|
||
package Compiler is | ||
V1 := ""; | ||
for Local_Configuration_Pragmas use ""; | ||
end Compiler; | ||
|
||
V2 := | ||
Imported. | ||
Compiler. | ||
Imported_Compiler_Variable; | ||
|
||
V3 := project' | ||
Name; | ||
|
||
V4 := Extended.Emulator' | ||
Board; | ||
|
||
for Object_Dir use | ||
Prj.Compiler' | ||
Local_Configuration_Pragmas; | ||
|
||
for Source_Dirs use ( | ||
"."); | ||
|
||
for Source_Dirs use ("." & | ||
"."); | ||
|
||
for Source_Dirs use (".", | ||
".."); | ||
|
||
V5 : | ||
Imported. | ||
Imported_Type := "a"; | ||
|
||
V5 : | ||
Extended. | ||
Extended_Type := "a"; | ||
|
||
V5 : | ||
E ; | ||
|
||
V5 := | ||
I; | ||
|
||
for Object_Dir use | ||
P ; | ||
|
||
V5 := ( | ||
E ); | ||
|
||
V5 := V5 & | ||
I ; | ||
|
||
V5 := ("", | ||
P ); | ||
|
||
V5 := project' | ||
N ; | ||
|
||
V5 := Extended. | ||
E ; | ||
|
||
end Prj; |
Oops, something went wrong.