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