diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-12 23:17:06 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-12 23:17:06 +0200 |
| commit | b2f8be605d2b79d1d4b1995646e7058bec299a22 (patch) | |
| tree | b5dd4a434103d440d7c541badc3cf3097e8ac967 /cl.elna | |
| parent | fea8ff27f53f960ff7149b360446589a0748aeb5 (diff) | |
| download | elna-b2f8be605d2b79d1d4b1995646e7058bec299a22.tar.gz | |
Add fail_compilation tests
Diffstat (limited to 'cl.elna')
| -rw-r--r-- | cl.elna | 38 |
1 files changed, 0 insertions, 38 deletions
@@ -14,14 +14,6 @@ type first: ^ElnaListNode; last: ^ElnaListNode end - ElnaLocation = record - line: Word; - column: Word - end - ElnaPosition = record - start_location: ElnaLocation; - end_location: ElnaLocation - end (** * List of intermediate representation items. @@ -387,26 +379,6 @@ type is_extern: Bool end - ElnaLexerAction = (none, accumulate, skip, single, eof, finalize, composite, key_id, integer, delimited) - - ElnaLexerTransition = record - action: ElnaLexerAction; - next_state: ElnaLexerState - end - - ElnaLexerToken = record - kind: ElnaLexerKind; - start: String; - position: ElnaPosition - end - ElnaLexerCursor = record - state: ElnaLexerState; - start: ^Char; - finish: ^Char; - token: ^ElnaLexerToken; - position: ElnaPosition - end - ElnaTacOperator = ( get_address, add, @@ -644,16 +616,6 @@ var temporary_variable_counter: Word pseudo_counter: Word - stdout: Pointer - stderr: Pointer - stdin: Pointer - -proc free_and_nil(pointer: Pointer): Pointer -begin - free(pointer); - return nil -end - (** * Adds a string to the global, read-only string storage. * |
