Move words from compiler.errors.private to compiler.errors

db4
Slava Pestov 2008-11-16 13:46:21 -06:00
parent 77b77d6414
commit e6218fdc71
2 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,6 @@
IN: compiler.errors
USING: help.markup help.syntax vocabs.loader words io
quotations compiler.errors.private ;
quotations ;
ARTICLE: "compiler-errors" "Compiler warnings and errors"
"The compiler saves various notifications in a global variable:"

View File

@ -14,8 +14,6 @@ M: object compiler-error-type drop +error+ ;
GENERIC# compiler-error. 1 ( error word -- )
<PRIVATE
SYMBOL: compiler-errors
SYMBOL: with-compiler-errors?
@ -47,8 +45,6 @@ SYMBOL: with-compiler-errors?
"semantic warnings" +warning+ "warnings" (compiler-report)
"linkage errors" +linkage+ "linkage" (compiler-report) ;
PRIVATE>
: :errors ( -- ) +error+ compiler-errors. ;
: :warnings ( -- ) +warning+ compiler-errors. ;