Handbook
Glossary
error-renderer
Vocabulary
ui
.
tools
.
error-list
Definition
IN:
ui.tools.error-list
SINGLETON:
error-renderer
Methods
USING:
kernel
ui.gadgets.tables
ui.tools.error-list
;
M:
error-renderer
column-alignment
drop
{
0 1 0 0
}
;
USING:
kernel
ui.gadgets.tables
ui.tools.error-list
;
M:
error-renderer
column-titles
drop
{
""
"Line"
"Asset"
"Error"
}
;
USING:
combinators.smart
compiler.errors
kernel
ui.gadgets.tables
ui.tools.error-list
;
M:
error-renderer
prototype-row
drop
[
+compiler-error+
error-icon
""
""
""
]
output>array
;
USING:
accessors
combinators
combinators.smart
kernel
math.parser
prettyprint
source-files.errors
summary
ui.gadgets.tables
ui.tools.error-list
;
M:
error-renderer
row-columns
drop
[
{
[
error-type
error-icon
]
[
line#>>
[
number>string
]
[
""
]
if*
]
[
asset>>
[
unparse-short
]
[
""
]
if*
]
[
error>>
safe-summary
]
}
cleave
]
output>array
;
USING:
kernel
ui.gadgets.tables
ui.tools.error-list
;
M:
error-renderer
row-value
drop
;