Skip to content

Commit

Permalink
alien.parser: add a couple of commas
Browse files Browse the repository at this point in the history
  • Loading branch information
erg committed Jul 3, 2015
1 parent 43d6f1d commit 0124e63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basis/alien/parser/parser-tests.factor
Expand Up @@ -36,15 +36,15 @@ CONSTANT: eleven 11
[ "not-word" parse-c-type ] [ error>> no-word-error? ] must-fail-with
] 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* ) ] [
\ alien-parser-function-effect-test "declared-effect" word-prop
] 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* ) ] [
\ (alien-parser-function-effect-test) "declared-effect" word-prop
Expand Down

0 comments on commit 0124e63

Please sign in to comment.