Fix bootstrap

db4
Slava Pestov 2009-04-10 04:41:26 -05:00
parent 4f41e07147
commit deae1d7bbb
3 changed files with 6 additions and 2 deletions

View File

@ -6,6 +6,7 @@ IN: bootstrap.tools
"bootstrap.image"
"tools.annotations"
"tools.crossref"
"tools.errors"
"tools.deploy"
"tools.disassembler"
"tools.memory"

View File

@ -42,8 +42,10 @@ IN: compiler.tree.builder
: check-cannot-infer ( word -- )
dup "cannot-infer" word-prop [ cannot-infer-effect ] [ drop ] if ;
TUPLE: do-not-compile word ;
: check-no-compile ( word -- )
dup "no-compile" word-prop [ cannot-infer-effect ] [ drop ] if ;
dup "no-compile" word-prop [ do-not-compile inference-warning ] [ drop ] if ;
: build-tree-from-word ( word -- nodes )
[

View File

@ -1,4 +1,5 @@
USING: help.markup help.syntax parser source-files vocabs.loader ;
USING: help.markup help.syntax parser source-files
source-files.errors vocabs.loader ;
IN: editors
ARTICLE: "editor" "Editor integration"