aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorjohnvg2003-12-11 12:14:27 +0000
committerjohnvg2003-12-11 12:14:27 +0000
commit44476d783ccc4553392b0543ce27dab6fb0ee402 (patch)
tree0489c09c4cf9dfa8db45e7c79a71d2ee15026f1c /backend
parentfix generated code for strict or unboxed list constructor root node on a cycle (diff)
use 'Error: ' instead of '[Backend]' in the backend too old
or new error messages, so that the IDE recognizes this as an error instead of info. git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1425 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backend')
-rw-r--r--backend/backendinterface.icl4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/backendinterface.icl b/backend/backendinterface.icl
index 7399fe4..c17aa81 100644
--- a/backend/backendinterface.icl
+++ b/backend/backendinterface.icl
@@ -15,11 +15,11 @@ checkVersion VersionsAreCompatible errorFile
= (True, errorFile)
checkVersion VersionObservedIsTooNew errorFile
# errorFile
- = fwrites "[Backend] the back end library is too new\n" errorFile
+ = fwrites "Error: the back end library is too new\n" errorFile
= (False, errorFile)
checkVersion VersionObservedIsTooOld errorFile
# errorFile
- = fwrites "[Backend] the back end library is too old\n" errorFile
+ = fwrites "Error: the back end library is too old\n" errorFile
= (False, errorFile)
backEndInterface :: !{#Char} [{#Char}] !ListTypesOption !{#Char} !PredefinedSymbols !FrontEndSyntaxTree !Int !*VarHeap !*AttrVarHeap !*File !*Files -> (!Bool, !*VarHeap, !*AttrVarHeap, !*File, !*Files)