Skip to content

Commit

Permalink
vocabs.platforms: Add <LINUX LINUX> sections that ignore code for the…
Browse files Browse the repository at this point in the history
… wrong platform.
  • Loading branch information
erg committed Jul 16, 2018
1 parent 4740852 commit 39cbe60
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions basis/vocabs/platforms/authors.txt
@@ -0,0 +1 @@
Doug Coleman
36 changes: 36 additions & 0 deletions basis/vocabs/platforms/platforms.factor
@@ -0,0 +1,36 @@
! Copyright (C) 2018 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors compiler.units kernel multiline parser
sequences splitting system vocabs.parser ;
IN: vocabs.platforms

: with-vocabulary ( quot suffix -- )
[
[ [ current-vocab name>> ] dip ?tail drop ]
[ append ] bi set-current-vocab
call
] [
[ current-vocab name>> ] dip ?tail drop set-current-vocab
] bi ; inline

: parse-platform-section ( string suffix -- )
[
[ [ string-lines parse-lines ] curry with-nested-compilation-unit ]
curry
] dip with-vocabulary drop ; inline

SYNTAX: <UNIX
"UNIX>" parse-multiline-string
os unix? [ ".unix" parse-platform-section ] [ drop ] if ;

SYNTAX: <MACOSX
"MACOSX>" parse-multiline-string
os macosx? [ ".macosx" parse-platform-section ] [ drop ] if ;

SYNTAX: <LINUX
"LINUX>" parse-multiline-string
os linux? [ ".linux" parse-platform-section ] [ drop ] if ;

SYNTAX: <WINDOWS
"WINDOWS>" parse-multiline-string
os windows? [ ".windows" parse-platform-section ] [ drop ] if ;

0 comments on commit 39cbe60

Please sign in to comment.