Skip to content

Commit b8be716

Browse files
update rpgle variable types
Signed-off-by: Sanjula Ganepola <[email protected]>
1 parent a8c5a1d commit b8be716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

language/models/cache.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ const newInds = () => {
1212
})
1313
};
1414

15-
export type RpgleVariableType = `char` | `varchar` | `int` | `uns` | `packed` | `zoned` | `ind` | `date` | `time` | `timestamp` | `pointer` | `float` | `graph`;
16-
const validTypes: RpgleVariableType[] = [`char`, `varchar`, `int`, `uns`, `packed`, `zoned`, `ind`, `date`, `time`, `timestamp`, `pointer`, `float`, `graph`];
15+
export type RpgleVariableType = `char` | `varchar` | `ucs2` | `varucs2` | `int` | `uns` | `packed` | `zoned` | `float` | `ind` | `date` | `time` | `timestamp` | `pointer` | `graph` | `vargraph`;
16+
const validTypes: RpgleVariableType[] = [`char`, `varchar`, `ucs2`, `varucs2`, `int`, `uns`, `packed`, `zoned`, `float`, `ind`, `date`, `time`, `timestamp`, `pointer`, `graph`, `vargraph`];
1717

1818
export interface RpgleTypeDetail {
1919
type?: { name: RpgleVariableType, value?: string };

0 commit comments

Comments
 (0)