Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 1 | ############################################################################### |
Stephan Herrmann | 37b6226 | 2019-09-05 20:02:13 +0200 | [diff] [blame^] | 2 | # Copyright (c) 2000, 2019 IBM Corporation and others. |
Stephan Herrmann | aa0c80c | 2018-09-08 22:11:53 +0200 | [diff] [blame] | 3 | # |
| 4 | # This program and the accompanying materials |
| 5 | # are made available under the terms of the Eclipse Public License 2.0 |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 6 | # which accompanies this distribution, and is available at |
Stephan Herrmann | aa0c80c | 2018-09-08 22:11:53 +0200 | [diff] [blame] | 7 | # https://www.eclipse.org/legal/epl-2.0/ |
| 8 | # |
| 9 | # SPDX-License-Identifier: EPL-2.0 |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 10 | # |
Stephan Herrmann | 37b6226 | 2019-09-05 20:02:13 +0200 | [diff] [blame^] | 11 | # This is an implementation of an early-draft specification developed under the Java |
| 12 | # Community Process (JCP) and is made available for testing and evaluation purposes |
| 13 | # only. The code is not compatible with any specification of the JCP. |
| 14 | # |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 15 | # Contributors: |
| 16 | # IBM Corporation - initial API and implementation |
| 17 | ############################################################################### |
| 18 | ### compiler messages. |
| 19 | |
| 20 | ### compilation |
| 21 | compilation_unresolvedProblem = Unresolved compilation problem: \n |
| 22 | compilation_unresolvedProblems = Unresolved compilation problems: \n |
| 23 | compilation_request = [parsing {2} - #{0}/{1}] |
| 24 | compilation_loadBinary = [reading {0}.class] |
| 25 | compilation_process = [analyzing {2} - #{0}/{1}] |
| 26 | compilation_write = [writing {1} - #{0}] |
| 27 | compilation_done = [completed {2} - #{0}/{1}] |
| 28 | compilation_units = [{0} units compiled] |
| 29 | compilation_unit = [{0} unit compiled] |
| 30 | compilation_internalError = Internal compiler error: {0} |
| 31 | compilation_beginningToCompile=Beginning to compile |
| 32 | compilation_processing=Processing {0} |
| 33 | |
| 34 | ### output |
| 35 | output_isFile = Regular file {0} cannot be used as output directory |
| 36 | output_notValidAll = Could not create output directory {0} |
| 37 | output_notValid = Could not create subdirectory {0} into output directory {1} |
| 38 | |
| 39 | ### problem |
| 40 | problem_noSourceInformation = |
| 41 | problem_atLine = (at line {0}) |
| 42 | |
| 43 | ### abort |
| 44 | abort_invalidAttribute = SANITY CHECK: Invalid attribute for local variable {0} |
| 45 | abort_invalidExceptionAttribute = SANITY CHECK: Invalid attribute for exception attribute for {0} |
| 46 | abort_missingCode = Missing code implementation in the compiler |
| 47 | abort_againstSourceModel = Cannot compile against source model {0} issued from {1} |
| 48 | abort_invalidOpcode = SANITY CHECK: Invalid opcode {0} at pc {1} for stackmap table attribute for method {2} |
Stephan Herrmann | 6054d02 | 2016-03-19 16:21:11 +0100 | [diff] [blame] | 49 | abort_externaAnnotationFile = Failed to read external annotations for {0} from {1} due to an exception: {2} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 50 | |
| 51 | ### accept |
| 52 | accept_cannot = Cannot accept the compilation unit: |
| 53 | |
| 54 | ### parser |
| 55 | parser_incorrectPath = The path for the javadcl.java file is incorrect |
| 56 | parser_moveFiles = MOVE FILES IN THE Runtime DIRECTORY OF Parser.class |
| 57 | parser_syntaxRecovery = SYNTAX RECOVERY |
| 58 | parser_regularParse = REGULAR PARSE |
| 59 | parser_missingFile = missing file {0} |
| 60 | parser_corruptedFile = corrupted file {0} |
| 61 | parser_endOfFile = end of file |
| 62 | parser_endOfConstructor = end of constructor |
| 63 | parser_endOfMethod = end of method |
| 64 | parser_endOfInitializer = end of initializer |
| 65 | |
| 66 | ### ast |
| 67 | ast_missingCode = Missing code gen implementation |
| 68 | |
| 69 | ### constant |
| 70 | constant_cannotCastedInto = {0} constant cannot be casted into {1} |
| 71 | constant_cannotConvertedTo = {0} constant cannot be converted to {1} |