-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: show error if own declaration has same name as core one (#762)
Closes #760 ### Summary of Changes Core declarations like `Any` should never be shadowed by own declarations. Thus, it's now an error to give own declarations the same name as a core declaration.
- Loading branch information
1 parent
36663ca
commit 8cb2120
Showing
8 changed files
with
52 additions
and
4 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export const BUILTINS_ROOT_PACKAGE = 'safeds'; | ||
export const BUILTINS_LANG_PACKAGE = `${BUILTINS_ROOT_PACKAGE}.lang`; |
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
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
packages/safe-ds-lang/tests/resources/validation/names/core names/in safeds lang.sdstest
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,4 @@ | ||
package safeds.lang | ||
|
||
// $TEST$ no error "Names of core declarations must not be used for own declarations." | ||
annotation »Number« |
7 changes: 7 additions & 0 deletions
7
packages/safe-ds-lang/tests/resources/validation/names/core names/main.sdstest
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,7 @@ | ||
package tests.validation.names.coreNames | ||
|
||
// $TEST$ error "Names of core declarations must not be used for own declarations." | ||
annotation »Any« | ||
|
||
// $TEST$ no error "Names of core declarations must not be used for own declarations." | ||
annotation »Any1« |