Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(943)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: tests/language/super_no_such_method4_test.dart
Issue
1678053002
:
Fix super noSuchMethod handling. (Closed)
Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set:
Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
pkg/compiler/lib/src/info/send_info.dart
pkg/compiler/lib/src/js_backend/js_backend.dart
pkg/compiler/lib/src/js_backend/no_such_method_registry.dart
pkg/compiler/lib/src/resolution/semantic_visitor.dart
pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
pkg/compiler/lib/src/resolution/send_structure.dart
pkg/compiler/lib/src/ssa/builder.dart
tests/compiler/dart2js/semantic_visitor_test.dart
tests/compiler/dart2js/semantic_visitor_test_send_data.dart
tests/compiler/dart2js/semantic_visitor_test_send_visitor.dart
tests/language/issue_25671a_test.dart
tests/language/issue_25671b_test.dart
tests/language/language_dart2js.status
tests/language/super_no_such_method1_test.dart
tests/language/super_no_such_method2_test.dart
tests/language/super_no_such_method3_test.dart
tests/language/super_no_such_method4_test.dart
tests/language/super_no_such_method5_test.dart
View unified diff
|
Download patch
« pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
('K') |
« tests/language/super_no_such_method3_test.dart
('k') |
tests/language/super_no_such_method5_test.dart »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
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.
4
5
import 'package:expect/expect.dart';
6
7
class A {
8
noSuchMethod(im) => 42;
9
}
10
11
class B extends Object with A {
12
noSuchMethod(im) => 87;
13
14
foo() => super.foo(); /// 01: static type warning
15
}
16
17
main() {
18
Expect.equals(42, new B().foo()); /// 01: continued
19
}
OLD
NEW
« pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
('K') |
« tests/language/super_no_such_method3_test.dart
('k') |
tests/language/super_no_such_method5_test.dart »
('j') |
no next file with comments »
Issue 1678053002: Fix super noSuchMethod handling. (Closed)
Created 4 years, 10 months ago by Johnni Winther
Modified 4 years, 10 months ago
Reviewers: asgerf, Harry Terkelsen
Base URL: https://github.com/dart-lang/sdk.git@master
Comments: 2
This is Rietveld
408576698