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

Side by Side Diff: pkg/compiler/lib/src/kernel/no_such_method_resolver.dart

Issue 2777093010: Use entities in NoSuchMethodRegistry (Closed)
Patch Set: Move as cast. Created 3 years, 8 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
OLDNEW
(Empty)
1 // Copyright (c) 2017, 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 part of dart2js.kernel.world_builder;
6
7 class KernelNoSuchMethodResolver implements NoSuchMethodResolver {
8 final KernelWorldBuilder _worldBuilder;
9
10 KernelNoSuchMethodResolver(this._worldBuilder);
11
12 @override
13 bool hasForwardingSyntax(KFunction method) {
14 return false;
15 }
16
17 @override
18 bool hasThrowingSyntax(KFunction method) {
19 return false;
20 }
21
22 @override
23 FunctionEntity getSuperNoSuchMethod(FunctionEntity method) {
24 return null;
25 }
26 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/no_such_method_registry.dart ('k') | pkg/compiler/lib/src/kernel/world_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698