forked from hpcc-systems/HPCC-Platform
-
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.
Merge remote-tracking branch 'origin/candidate-9.6.x' into candidate-…
…9.8.x Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
- Loading branch information
Showing
42 changed files
with
610 additions
and
366 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
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,50 @@ | ||
/*############################################################################## | ||
HPCC SYSTEMS software Copyright (C) 2024 HPCC Systems®. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
############################################################################## */ | ||
|
||
myModule := MODULE | ||
|
||
EXPORT value1 := 100; | ||
EXPORT value2 := 200; | ||
EXPORT value3(unsigned x = 10) := 300; | ||
EXPORT value4() := 400; | ||
|
||
END; | ||
|
||
myInterface := INTERFACE | ||
|
||
EXPORT value1 := 0; | ||
EXPORT value2(unsigned unknown) := 0; | ||
EXPORT value3 := 0; | ||
EXPORT value4() := 0; | ||
|
||
END; | ||
|
||
|
||
|
||
display(myInterface x) := FUNCTION | ||
RETURN | ||
ORDERED( | ||
OUTPUT(x.value1); | ||
OUTPUT(x.value2(99999)); | ||
OUTPUT(x.value3); | ||
OUTPUT(x.value4()); | ||
); | ||
END; | ||
|
||
|
||
mappedModule := PROJECT(myModule, myInterface); | ||
display(mappedModule); |
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,50 @@ | ||
/*############################################################################## | ||
HPCC SYSTEMS software Copyright (C) 2024 HPCC Systems®. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
############################################################################## */ | ||
|
||
myModule := MODULE | ||
|
||
EXPORT value1 := 100; | ||
EXPORT value2 := 200; | ||
EXPORT value3(unsigned i) := 300; // invalid - no default value supplied | ||
EXPORT value4() := 400; | ||
|
||
END; | ||
|
||
myInterface := INTERFACE | ||
|
||
EXPORT value1 := 0; | ||
EXPORT value2() := 0; | ||
EXPORT value3 := 0; | ||
EXPORT value4() := 0; | ||
|
||
END; | ||
|
||
|
||
|
||
display(myInterface x) := FUNCTION | ||
RETURN | ||
ORDERED( | ||
OUTPUT(x.value1); | ||
OUTPUT(x.value2()); | ||
OUTPUT(x.value3); | ||
OUTPUT(x.value4()); | ||
); | ||
END; | ||
|
||
|
||
mappedModule := PROJECT(myModule, myInterface); | ||
display(mappedModule); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.