comparison trunk/src/dil/Messages.d @ 787:47c5099562c7

Added two semantic error messages.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 24 Feb 2008 03:11:39 +0100
parents 8e6fed11bb68
children c1d5cfd7aa44
comparison
equal deleted inserted replaced
786:3b34f6a95a27 787:47c5099562c7
148 // Semantic analysis: 148 // Semantic analysis:
149 auto DeclConflictsWithDecl = "declaration '{}' conflicts with declaration @{}"; 149 auto DeclConflictsWithDecl = "declaration '{}' conflicts with declaration @{}";
150 auto VariableConflictsWithDecl = "variable '{}' conflicts with declaration @{}"; 150 auto VariableConflictsWithDecl = "variable '{}' conflicts with declaration @{}";
151 auto InterfaceCantHaveVariables = "an interface can't have member variables"; 151 auto InterfaceCantHaveVariables = "an interface can't have member variables";
152 auto MixinArgumentMustBeString = "the mixin argument must evaluate to a string"; 152 auto MixinArgumentMustBeString = "the mixin argument must evaluate to a string";
153 auto DebugSpecModuleLevel = "debug={} must be a module level";
154 auto VersionSpecModuleLevel = "version={} must be a module level";
153 } 155 }