-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #560 from smeup/bugfix/comptime-ds-like-ds
Bugfix/comptime ds like ds
- Loading branch information
Showing
3 changed files
with
57 additions
and
1 deletion.
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
34 changes: 34 additions & 0 deletions
34
rpgJavaInterpreter-core/src/test/resources/smeup/MUDRNRAPU00225.rpgle
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,34 @@ | ||
D £DBG_Str S 2 | ||
|
||
D B£SLOT E DS EXTNAME(B£SLOT0F) INZ | ||
D CSLOTS S LIKE(B£SLOT) DIM(200) | ||
D* skiera ordinata delle chiavi | ||
D CSLOTADS DS | ||
D CSLOTA LIKE(CSDS) | ||
D DIM(%ELEM(CSLOTS)) ASCEND | ||
D* CSLOTKA OVERLAY(CSLOTA:01) LIKE(CKEY) Chiave ordinamento | ||
D CSLOTNA OVERLAY(CSLOTA:*NEXT) LIKE(CSNR) Puntatore a CSLOTS | ||
|
||
D CSDS DS | ||
D $OAVT1 LIKE(§OAVT1) | ||
D $OAVP1 LIKE(§OAVP1) | ||
D $OAVT2 LIKE(§OAVT2) | ||
D $OAVP2 LIKE(§OAVP2) | ||
D $OAVAT LIKE(§OAVAT) | ||
D CSNR 5S 0 | ||
|
||
C *ENTRY PLIST | ||
C PARM £OAVT1 2 | ||
C PARM £OAVP1 10 | ||
C PARM £OAVT2 2 | ||
C PARM £OAVP2 10 | ||
C PARM £OAVAT 15 | ||
|
||
C *LIKE DEFINE £OAVT1 §OAVT1 | ||
C *LIKE DEFINE £OAVP1 §OAVP1 | ||
C *LIKE DEFINE £OAVT2 §OAVT2 | ||
C *LIKE DEFINE £OAVP2 §OAVP2 | ||
C *LIKE DEFINE £OAVAT §OAVAT | ||
|
||
C EVAL £DBG_Str='ok' | ||
C £DBG_Str DSPLY |