< prev index next >

src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/Messages.properties

Print this page
rev 1391 : 8073613: Here documents: how to avoid string interpolation?


  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 lexer.error.edit.string.missing.brace=Edit string expression missing closing brace
  26 lexer.error.here.missing.end.marker=Here string missing end marker "{0}"
  27 lexer.error.missing.close.quote=Missing close quote
  28 lexer.error.missing.space.after.number=Missing space after numeric literal
  29 lexer.error.invalid.hex=Invalid hex digit
  30 lexer.error.strict.no.octal=cannot use octal escapes in strict mode
  31 lexer.error.json.invalid.number=Invalid JSON number format
  32 lexer.error.invalid.escape.char=Invalid escape character
  33 lexer.error.illegal.identifier.character=Illegal character in identifier

  34 
  35 parser.error.illegal.continue.stmt=Illegal continue statement
  36 parser.error.illegal.break.stmt=Illegal break statement
  37 parser.error.invalid.lvalue=Invalid left hand side for assignment
  38 parser.error.undefined.label=Undefined Label "{0}"
  39 parser.error.duplicate.label=Duplicate Label "{0}"
  40 parser.error.duplicate.default.in.switch=Switch already has default case
  41 parser.error.expected.literal=Expected a literal but found {0}
  42 parser.error.expected.operand=Expected an operand but found {0}
  43 parser.error.expected.stmt=Expected statement but found {0}
  44 parser.error.expected.comma=Expected comma but found {0}
  45 parser.error.expected.property.id=Expected property id but found {0}
  46 parser.error.expected.lvalue=Expected l-value but found {0}
  47 parser.error.expected=Expected {0} but found {1}
  48 parser.error.invalid.return=Invalid return statement
  49 parser.error.no.func.decl.here=Function declarations can only occur at program or function body level. You should use a function expression here instead.
  50 parser.error.no.func.decl.here.warn=Function declarations should only occur at program or function body level. Function declaration in nested block was converted to a function expression.
  51 parser.error.property.redefinition=Property "{0}" already defined
  52 parser.error.unexpected.token=Unexpected token: {0}
  53 parser.error.for.each.without.in=for each can only be used with for..in




  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 lexer.error.edit.string.missing.brace=Edit string expression missing closing brace
  26 lexer.error.here.missing.end.marker=Here string missing end marker "{0}"
  27 lexer.error.missing.close.quote=Missing close quote
  28 lexer.error.missing.space.after.number=Missing space after numeric literal
  29 lexer.error.invalid.hex=Invalid hex digit
  30 lexer.error.strict.no.octal=cannot use octal escapes in strict mode
  31 lexer.error.json.invalid.number=Invalid JSON number format
  32 lexer.error.invalid.escape.char=Invalid escape character
  33 lexer.error.illegal.identifier.character=Illegal character in identifier
  34 lexer.error.here.non.matching.delimiter=Quoted here string end marker must have matching delimiters
  35 
  36 parser.error.illegal.continue.stmt=Illegal continue statement
  37 parser.error.illegal.break.stmt=Illegal break statement
  38 parser.error.invalid.lvalue=Invalid left hand side for assignment
  39 parser.error.undefined.label=Undefined Label "{0}"
  40 parser.error.duplicate.label=Duplicate Label "{0}"
  41 parser.error.duplicate.default.in.switch=Switch already has default case
  42 parser.error.expected.literal=Expected a literal but found {0}
  43 parser.error.expected.operand=Expected an operand but found {0}
  44 parser.error.expected.stmt=Expected statement but found {0}
  45 parser.error.expected.comma=Expected comma but found {0}
  46 parser.error.expected.property.id=Expected property id but found {0}
  47 parser.error.expected.lvalue=Expected l-value but found {0}
  48 parser.error.expected=Expected {0} but found {1}
  49 parser.error.invalid.return=Invalid return statement
  50 parser.error.no.func.decl.here=Function declarations can only occur at program or function body level. You should use a function expression here instead.
  51 parser.error.no.func.decl.here.warn=Function declarations should only occur at program or function body level. Function declaration in nested block was converted to a function expression.
  52 parser.error.property.redefinition=Property "{0}" already defined
  53 parser.error.unexpected.token=Unexpected token: {0}
  54 parser.error.for.each.without.in=for each can only be used with for..in


< prev index next >