comparison trunk/src/dil/Messages.d @ 681:95a3c28c0f64

Renamed AsmStatement->AsmBlockStatement and AsnInstruction->AsmStatement.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 19 Jan 2008 00:10:57 +0100
parents 29cc5bf3ce89
children 5cb236c6fe52
comparison
equal deleted inserted replaced
680:6b3e397229c5 681:95a3c28c0f64
103 // Parser messages: 103 // Parser messages:
104 auto ModuleDeclarationNotFirst = "a module declaration is only allowed as the first declaration in a file"; 104 auto ModuleDeclarationNotFirst = "a module declaration is only allowed as the first declaration in a file";
105 auto StringPostfixMismatch = "string literal has mistmatching postfix character"; 105 auto StringPostfixMismatch = "string literal has mistmatching postfix character";
106 auto ExpectedIdAfterTypeDot = "expected identifier after '(Type).', not '{}'"; 106 auto ExpectedIdAfterTypeDot = "expected identifier after '(Type).', not '{}'";
107 auto ExpectedModuleIdentifier = "expected module identifier, not '{}'"; 107 auto ExpectedModuleIdentifier = "expected module identifier, not '{}'";
108 auto IllegalDeclaration = "illegal Declaration found: {}"; 108 auto IllegalDeclaration = "illegal declaration found: {}";
109 auto ExpectedFunctionName = "expected function name, not '{}'"; 109 auto ExpectedFunctionName = "expected function name, not '{}'";
110 auto ExpectedVariableName = "expected variable name, not '{}'"; 110 auto ExpectedVariableName = "expected variable name, not '{}'";
111 auto ExpectedFunctionBody = "expected function body, not '{}'"; 111 auto ExpectedFunctionBody = "expected function body, not '{}'";
112 auto RedundantLinkageType = "redundant linkage type: {}"; 112 auto RedundantLinkageType = "redundant linkage type: {}";
113 auto ExpectedPragmaIdentifier = "expected pragma identifier, not '{}'"; 113 auto ExpectedPragmaIdentifier = "expected pragma identifier, not '{}'";
122 auto ExpectedInterfaceBody = "expected interface body, not '{}'"; 122 auto ExpectedInterfaceBody = "expected interface body, not '{}'";
123 auto ExpectedStructBody = "expected struct body, not '{}'"; 123 auto ExpectedStructBody = "expected struct body, not '{}'";
124 auto ExpectedUnionBody = "expected union body, not '{}'"; 124 auto ExpectedUnionBody = "expected union body, not '{}'";
125 auto ExpectedTemplateName = "expected template name, not '{}'"; 125 auto ExpectedTemplateName = "expected template name, not '{}'";
126 auto ExpectedAnIdentifier = "expected an identifier, not '{}'"; 126 auto ExpectedAnIdentifier = "expected an identifier, not '{}'";
127 auto IllegalStatement = "illegal Statement found: {}"; 127 auto IllegalStatement = "illegal statement found: {}";
128 auto ExpectedNonEmptyStatement = "didn't expect ';', use {{ } instead"; 128 auto ExpectedNonEmptyStatement = "didn't expect ';', use {{ } instead";
129 auto ExpectedScopeIdentifier = "expected 'exit', 'success' or 'failure', not '{}'"; 129 auto ExpectedScopeIdentifier = "expected 'exit', 'success' or 'failure', not '{}'";
130 auto InvalidScopeIdentifier = "'exit', 'success', 'failure' are valid scope identifiers, but not '{}'"; 130 auto InvalidScopeIdentifier = "'exit', 'success', 'failure' are valid scope identifiers, but not '{}'";
131 auto ExpectedIntegerAfterAlign = "expected an integer after align, not '{}'"; 131 auto ExpectedIntegerAfterAlign = "expected an integer after align, not '{}'";
132 auto IllegalAsmInstruction = "illegal AsmInstruction found: {}"; 132 auto IllegalAsmStatement = "illegal asm statement found: {}";
133 auto ExpectedDeclaratorIdentifier = "expected declarator identifier, not '{}'"; 133 auto ExpectedDeclaratorIdentifier = "expected declarator identifier, not '{}'";
134 auto ExpectedTemplateParameters = "expected one or more template parameters, not ')'"; 134 auto ExpectedTemplateParameters = "expected one or more template parameters, not ')'";
135 auto ExpectedTypeOrExpression = "expected a type or and expression, not ')'"; 135 auto ExpectedTypeOrExpression = "expected a type or and expression, not ')'";
136 auto ExpectedAliasTemplateParam = "expected name for alias template parameter, not '{}'"; 136 auto ExpectedAliasTemplateParam = "expected name for alias template parameter, not '{}'";
137 auto ExpectedNameForThisTempParam = "expected name for 'this' template parameter, not '{}'"; 137 auto ExpectedNameForThisTempParam = "expected name for 'this' template parameter, not '{}'";