Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: tests/co19/co19-dart2js.status

Issue 25046002: Emit a compile-time error when a named optional parameter has a library private name. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/co19/co19-dart2dart.status ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 [ $compiler == dart2js && $runtime == jsshell ] 5 [ $compiler == dart2js && $runtime == jsshell ]
6 LibTest/isolate/isolate_api/spawnUri_A02_t01: Crash # TODO(ahe): Please triage t his crash. 6 LibTest/isolate/isolate_api/spawnUri_A02_t01: Crash # TODO(ahe): Please triage t his crash.
7 LibTest/core/List/sort_A01_t04: Fail, Pass, Timeout # Must be a bug in jsshell, test sometimes times out. 7 LibTest/core/List/sort_A01_t04: Fail, Pass, Timeout # Must be a bug in jsshell, test sometimes times out.
8 8
9 [ $compiler == dart2js && $checked && $runtime == ie9 ] 9 [ $compiler == dart2js && $checked && $runtime == ie9 ]
10 LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout # co19-roll r576: P lease triage this failure 10 LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout # co19-roll r576: P lease triage this failure
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 LibTest/math/log_A01_t01: Fail # TODO(kasperl): Please triage. 303 LibTest/math/log_A01_t01: Fail # TODO(kasperl): Please triage.
304 304
305 305
306 [ $compiler == dart2js && ($runtime == ie10 || $runtime == ff || $runtime == chr ome || $runtime == drt || $runtime == safari || $runtime == opera) ] 306 [ $compiler == dart2js && ($runtime == ie10 || $runtime == ff || $runtime == chr ome || $runtime == drt || $runtime == safari || $runtime == opera) ]
307 *: Skip 307 *: Skip
308 308
309 # 309 #
310 # Missing compile-time errors. 310 # Missing compile-time errors.
311 # 311 #
312 [ $compiler == dart2js ] 312 [ $compiler == dart2js ]
313 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: MissingCom pileTimeError # TODO(ahe): Enforce optional parameter semantics.
314 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t04: MissingCom pileTimeError # TODO(ahe): Enforce optional parameter semantics.
315 Language/07_Classes/07_Classes_A02_t11: MissingCompileTimeError # Checks that it is a compile-time error if a static final variable declaration does not include explicit initializer. 313 Language/07_Classes/07_Classes_A02_t11: MissingCompileTimeError # Checks that it is a compile-time error if a static final variable declaration does not include explicit initializer.
316 Language/12_Expressions/01_Constants_A20_t03: MissingCompileTimeError # Checks t hat an identifier expression that denotes a type parameter can not be assigned to a constant variable. 314 Language/12_Expressions/01_Constants_A20_t03: MissingCompileTimeError # Checks t hat an identifier expression that denotes a type parameter can not be assigned to a constant variable.
317 Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: MissingCompil eTimeError # Checks that it is a compile-time error if a string interpolation co nstruct does not start with IDENTIFIER_NO_DOLLAR or opening brace. 315 Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: MissingCompil eTimeError # Checks that it is a compile-time error if a string interpolation co nstruct does not start with IDENTIFIER_NO_DOLLAR or opening brace.
318 Language/12_Expressions/05_Strings_A02_t46: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors. 316 Language/12_Expressions/05_Strings_A02_t46: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors.
319 Language/12_Expressions/05_Strings_A02_t48: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors. 317 Language/12_Expressions/05_Strings_A02_t48: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors.
320 Language/12_Expressions/30_Identifier_Reference_A04_t09: MissingCompileTimeError # Checks that it is a compile-time error when a built-in identifier dynamic is used as the declared name of a type variable. 318 Language/12_Expressions/30_Identifier_Reference_A04_t09: MissingCompileTimeError # Checks that it is a compile-time error when a built-in identifier dynamic is used as the declared name of a type variable.
321 Language/12_Expressions/30_Identifier_Reference_A05_t01: MissingCompileTimeError # Checks that it is a compile-time error when a built-in identifier "abstract" is used as a type annotation of a local variable. 319 Language/12_Expressions/30_Identifier_Reference_A05_t01: MissingCompileTimeError # Checks that it is a compile-time error when a built-in identifier "abstract" is used as a type annotation of a local variable.
322 Language/12_Expressions/30_Identifier_Reference_A05_t12: MissingCompileTimeError # Checks that it is a compile-time error when a built-in identifier "static" is used as a type annotation of a local variable. 320 Language/12_Expressions/30_Identifier_Reference_A05_t12: MissingCompileTimeError # Checks that it is a compile-time error when a built-in identifier "static" is used as a type annotation of a local variable.
323 Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: MissingCompileTi meError # Checks that other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0) 321 Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: MissingCompileTi meError # Checks that other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0)
324 Language/16_Reference/1_Lexical_Rules_A02_t06: MissingCompileTimeError # Checks that Unicode whitespaces other than WHITESPACE are not permitted in the source c ode. Checks symbol U+00a0. 322 Language/16_Reference/1_Lexical_Rules_A02_t06: MissingCompileTimeError # Checks that Unicode whitespaces other than WHITESPACE are not permitted in the source c ode. Checks symbol U+00a0.
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 628
631 [ $compiler == dart2js ] 629 [ $compiler == dart2js ]
632 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure 630 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure
633 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure 631 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure
634 LibTest/json/stringify_A01_t01: fail # co19-roll r587: Please triage this failur e 632 LibTest/json/stringify_A01_t01: fail # co19-roll r587: Please triage this failur e
635 LibTest/json/stringify_A02_t01: fail # co19-roll r587: Please triage this failur e 633 LibTest/json/stringify_A02_t01: fail # co19-roll r587: Please triage this failur e
636 LibTest/math/pow_A04_t01: fail # co19-roll r587: Please triage this failure 634 LibTest/math/pow_A04_t01: fail # co19-roll r587: Please triage this failure
637 LibTest/math/pow_A14_t01: fail # co19-roll r587: Please triage this failure 635 LibTest/math/pow_A14_t01: fail # co19-roll r587: Please triage this failure
638 LibTest/math/pow_A16_t01: fail # co19-roll r587: Please triage this failure 636 LibTest/math/pow_A16_t01: fail # co19-roll r587: Please triage this failure
639 637
OLDNEW
« no previous file with comments | « tests/co19/co19-dart2dart.status ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698