comparison trunk/src/dil/Parser.d @ 509:baa7c4c0be78

Fixed formatting string bug, thanks Deewiant.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Wed, 12 Dec 2007 22:17:20 +0200
parents 943ecc9c133a
children aa73f669c298
comparison
equal deleted inserted replaced
508:943ecc9c133a 509:baa7c4c0be78
4438 private struct MSG 4438 private struct MSG
4439 { 4439 {
4440 static: 4440 static:
4441 auto ExpectedIdAfterTypeDot = "expected identifier after '(Type).', not '{}'"; 4441 auto ExpectedIdAfterTypeDot = "expected identifier after '(Type).', not '{}'";
4442 auto ExpectedModuleIdentifier = "expected module identifier, not '{}'"; 4442 auto ExpectedModuleIdentifier = "expected module identifier, not '{}'";
4443 auto IllegalDeclaration = "illegal Declaration found: {}"; 4443 auto IllegalDeclaration = "illegal Declaration found: ";
4444 auto ExpectedFunctionName = "expected function name, not '{}'"; 4444 auto ExpectedFunctionName = "expected function name, not '{}'";
4445 auto ExpectedVariableName = "expected variable name, not '{}'"; 4445 auto ExpectedVariableName = "expected variable name, not '{}'";
4446 auto ExpectedFunctionBody = "expected function body, not '{}'"; 4446 auto ExpectedFunctionBody = "expected function body, not '{}'";
4447 auto RedundantLinkageType = "redundant linkage type: "; 4447 auto RedundantLinkageType = "redundant linkage type: ";
4448 auto ExpectedPragmaIdentifier = "expected pragma identifier, not '{}'"; 4448 auto ExpectedPragmaIdentifier = "expected pragma identifier, not '{}'";