break circularity
parent
0f137bafe9
commit
ad92bf7486
|
@ -102,3 +102,5 @@ SYMBOL: main-vocab-hook
|
||||||
H{ } user-init-errors set-global
|
H{ } user-init-errors set-global
|
||||||
default-cli-args
|
default-cli-args
|
||||||
] "command-line" add-startup-hook
|
] "command-line" add-startup-hook
|
||||||
|
|
||||||
|
{ "debugger" "command-line" } "command-line.debugger" require-when
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
USING: accessors debugger io kernel make math.parser
|
||||||
|
prettyprint command-line summary ;
|
||||||
|
IN: command-line.debugger
|
||||||
|
|
||||||
|
M: user-init-error error.
|
||||||
|
error>> error. ;
|
|
@ -1,5 +1,6 @@
|
||||||
|
! (c)2010 Joe Groff bsd license
|
||||||
USING: accessors debugger io kernel make math.parser
|
USING: accessors debugger io kernel make math.parser
|
||||||
prettyprint source-files.errors command-line summary ;
|
prettyprint source-files.errors summary ;
|
||||||
IN: source-files.errors.debugger
|
IN: source-files.errors.debugger
|
||||||
|
|
||||||
CONSTANT: +listener-input+ "<Listener input>"
|
CONSTANT: +listener-input+ "<Listener input>"
|
||||||
|
@ -17,6 +18,3 @@ M: source-file-error error.
|
||||||
[ asset>> [ "Asset: " write short. nl ] when* ]
|
[ asset>> [ "Asset: " write short. nl ] when* ]
|
||||||
[ error>> error. ]
|
[ error>> error. ]
|
||||||
tri ;
|
tri ;
|
||||||
|
|
||||||
M: user-init-error error.
|
|
||||||
error>> error. ;
|
|
||||||
|
|
Loading…
Reference in New Issue