diff basic/Messages.d @ 168:7982eb63c0eb

Some changes to get function overloading to work. Also class inherit works now - to some extend. needs vtables and all the complex stuff of it.
author Anders Johnsen <skabet@gmail.com>
date Thu, 24 Jul 2008 12:06:48 +0200
parents 57b0b4464a0b
children 2a1a635bd531
line wrap: on
line diff
--- a/basic/Messages.d	Tue Jul 22 21:34:53 2008 +0200
+++ b/basic/Messages.d	Thu Jul 24 12:06:48 2008 +0200
@@ -41,6 +41,8 @@
     NoConstructor,
     NoMachingCon,
     CandidateNr,
+    NoMethodByName,
+    NoMachingMethod,
 
     // Strings
     InvalidStrPrefix,
@@ -113,6 +115,8 @@
         NoConstructor       : E(Err, "No constructor avaible"),
         NoMachingCon        : E(Err, "No maching constructor. Candidates are:"),
         CandidateNr         : E(Err, "Candidate number %0"),
+        NoMethodByName      : E(Err, "No method with that name"),
+        NoMachingMethod     : E(Err, "No maching method. Candidates are:"),
         //   - switch
         MultipleDefaults
             : E(Err, "Switch statements can't have multiple defaults"),