factor/library/alien/objective-c/syntax.factor

15 lines
393 B
Factor
Raw Normal View History

2006-01-10 23:56:00 -05:00
! Copyright (C) 2006 Slava Pestov
! See http://factorcode.org/license.txt for BSD license.
IN: !syntax
USING: kernel lists namespaces objective-c parser syntax words ;
: OBJC-CLASS:
#! Syntax: name
CREATE dup word-name
[ objc_getClass ] curry define-compound ; parsing
: OBJC-MESSAGE:
scan string-mode on
[ string-mode off msg-send-args define-msg-send ] f ;
parsing