alien.parser: add a couple of commas

db4
Doug Coleman 2015-07-02 17:29:12 -07:00
parent 43d6f1d3e2
commit 0124e630f0
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ CONSTANT: eleven 11
[ "not-word" parse-c-type ] [ error>> no-word-error? ] must-fail-with [ "not-word" parse-c-type ] [ error>> no-word-error? ] must-fail-with
] with-file-vocabs ] with-file-vocabs
FUNCTION: void* alien-parser-function-effect-test ( int *arg1 float arg2 ) ; FUNCTION: void* alien-parser-function-effect-test ( int *arg1, float arg2 ) ;
[ ( arg1 arg2 -- void* ) ] [ [ ( arg1 arg2 -- void* ) ] [
\ alien-parser-function-effect-test "declared-effect" word-prop \ alien-parser-function-effect-test "declared-effect" word-prop
@ -44,7 +44,7 @@ FUNCTION: void* alien-parser-function-effect-test ( int *arg1 float arg2 ) ;
[ t ] [ \ alien-parser-function-effect-test inline? ] unit-test [ t ] [ \ alien-parser-function-effect-test inline? ] unit-test
FUNCTION-ALIAS: (alien-parser-function-effect-test) void* alien-parser-function-effect-test ( int *arg1 float arg2 ) ; FUNCTION-ALIAS: (alien-parser-function-effect-test) void* alien-parser-function-effect-test ( int *arg1, float arg2 ) ;
[ ( arg1 arg2 -- void* ) ] [ [ ( arg1 arg2 -- void* ) ] [
\ (alien-parser-function-effect-test) "declared-effect" word-prop \ (alien-parser-function-effect-test) "declared-effect" word-prop