Skip to content

Commit

Permalink
Add FULL_C enum (#1570)
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Henz <[email protected]>
  • Loading branch information
benmurphyy and martin-henz authored Mar 9, 2024
1 parent c97c2ba commit 7fb5eed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export interface Comment {

export type ExecutionMethod = 'native' | 'interpreter' | 'auto' | 'cse-machine'

export enum Chapter {
export const enum Chapter {
SOURCE_1 = 1,
SOURCE_2 = 2,
SOURCE_3 = 3,
Expand All @@ -80,6 +80,7 @@ export enum Chapter {
SCHEME_3 = -11,
SCHEME_4 = -12,
FULL_SCHEME = -13,
FULL_C = -14,
LIBRARY_PARSER = 100
}

Expand Down

0 comments on commit 7fb5eed

Please sign in to comment.