Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/tests/non262/lexical/   (Fast Lexical Analyzer Version 2.6©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  regress-351515.js   Sprache: JAVA

 
/* -*- tab-width: 2; indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


//-----------------------------------------------------------------------------
var BUGNUMBER = 351515;
var summary = 'Invalid uses of yield, let keywords in js17';
var actual = '';
var expect = '';


//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------

try
{
  expect = "No Error";
  eval('yield = 1;');
  actual = 'No Error';
}
catch(ex)
{
  actual = ex.name;
}
reportCompare(expect, actual, summary + ': global: yield = 1');

try
{
  expect = "No Error";
  eval('(function(){yield = 1;})');
  actual = 'No Error';
}
catch(ex)
{
  actual = ex.name;
}
reportCompare(expect, actual, summary + ': local: yield = 1');

try
{
  expect = "No Error";
  eval('let = 1;');
  actual = 'No Error';
}
catch(ex)
{
  actual = ex.name;
}
reportCompare(expect, actual, summary + ': global: let = 1');

function test()
{
  printBugNumber(BUGNUMBER);
  printStatus (summary);
 
  try
  {
    expect = "No Error";
    eval('function f(yield, let) { return yield+let; }');
    actual = 'No Error';
  }
  catch(ex)
  {
    actual = ex.name;
  }
  reportCompare(expect, actual, summary +
  ': function f(yield, let) { return yield+let; }');

  try
  {
    expect = "No Error";
    eval('var yield = 1;');
    actual = 'No Error';
  }
  catch(ex)
  {
    actual = ex.name;
  }
  reportCompare(expect, actual, summary + ': function () {var yield;}');

  try
  {
    expect = "No Error";
    eval('var let = 1;');
    actual = 'No Error';
  }
  catch(ex)
  {
    actual = ex.name;
  }
  reportCompare(expect, actual, summary + ': function () { var let;}');
}

Messung V0.5
C=84 H=100 G=92

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.