diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/example.reds | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/example.reds')
-rw-r--r-- | tests/examplefiles/example.reds | 150 |
1 files changed, 0 insertions, 150 deletions
diff --git a/tests/examplefiles/example.reds b/tests/examplefiles/example.reds deleted file mode 100644 index eb92310d..00000000 --- a/tests/examplefiles/example.reds +++ /dev/null @@ -1,150 +0,0 @@ -Red/System [ - Title: "Red/System example file" - Purpose: "Just some code for testing Pygments colorizer" - Language: http://www.red-lang.org/ -] - -#include %../common/FPU-configuration.reds - -; C types - -#define time! long! -#define clock! long! - -date!: alias struct! [ - second [integer!] ; 0-61 (60?) - minute [integer!] ; 0-59 - hour [integer!] ; 0-23 - - day [integer!] ; 1-31 - month [integer!] ; 0-11 - year [integer!] ; Since 1900 - - weekday [integer!] ; 0-6 since Sunday - yearday [integer!] ; 0-365 - daylight-saving-time? [integer!] ; Negative: unknown -] - -#either OS = 'Windows [ - #define clocks-per-second 1000 -][ - ; CLOCKS_PER_SEC value for Syllable, Linux (XSI-conformant systems) - ; TODO: check for other systems - #define clocks-per-second 1000'000 -] - -#import [LIBC-file cdecl [ - - ; Error handling - - form-error: "strerror" [ ; Return error description. - code [integer!] - return: [c-string!] - ] - print-error: "perror" [ ; Print error to standard error output. - string [c-string!] - ] - - - ; Memory management - - make: "calloc" [ ; Allocate zero-filled memory. - chunks [size!] - size [size!] - return: [binary!] - ] - resize: "realloc" [ ; Resize memory allocation. - memory [binary!] - size [size!] - return: [binary!] - ] - ] - - JVM!: alias struct! [ - reserved0 [int-ptr!] - reserved1 [int-ptr!] - reserved2 [int-ptr!] - - DestroyJavaVM [function! [[JNICALL] vm [JVM-ptr!] return: [jint!]]] - AttachCurrentThread [function! [[JNICALL] vm [JVM-ptr!] penv [struct! [p [int-ptr!]]] args [byte-ptr!] return: [jint!]]] - DetachCurrentThread [function! [[JNICALL] vm [JVM-ptr!] return: [jint!]]] - GetEnv [function! [[JNICALL] vm [JVM-ptr!] penv [struct! [p [int-ptr!]]] version [integer!] return: [jint!]]] - AttachCurrentThreadAsDaemon [function! [[JNICALL] vm [JVM-ptr!] penv [struct! [p [int-ptr!]]] args [byte-ptr!] return: [jint!]]] -] - - ;just some datatypes for testing: - - #some-hash - 10-1-2013 - quit - - ;binary: - #{00FF0000} - #{00FF0000 FF000000} - #{00FF0000 FF000000} ;with tab instead of space - 2#{00001111} - 64#{/wAAAA==} - 64#{/wAAA A==} ;with space inside - 64#{/wAAA A==} ;with tab inside - - - ;string with char - {bla ^(ff) foo} - {bla ^(( foo} - ;some numbers: - 12 - 1'000 - 1.2 - FF00FF00h - - ;some tests of hexa number notation with not common ending - [ff00h ff00h] ff00h{} FFh"foo" 00h(1 + 2) (AEh) - -;normal words: -foo char - -;get-word -:foo - -;lit-word: -'foo 'foo - -;multiple comment tests... -1 + 1 -comment "aa" -2 + 2 -comment {aa} -3 + 3 -comment {a^{} -4 + 4 -comment {{}} -5 + 5 -comment { - foo: 6 -} -6 + 6 -comment [foo: 6] -7 + 7 -comment [foo: "[" ] -8 + 8 -comment [foo: {^{} ] -9 + 9 -comment [foo: {boo} ] -10 + 10 -comment 5-May-2014/11:17:34+2:00 -11 + 11 - - -to-integer foo -foo/(a + 1)/b - -call/output reform ['which interpreter] path: copy "" - - version-1.1: 00010001h - - #if type = 'exe [ - push system/stack/frame ;-- save previous frame pointer - system/stack/frame: system/stack/top ;-- @@ reposition frame pointer just after the catch flag -] -push CATCH_ALL ;-- exceptions root barrier -push 0 ;-- keep stack aligned on 64-bit
\ No newline at end of file |