fabf3efda4
Change-Id: I8055552313786814bde6f66214a013a8bedb2078 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/177500 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
38 lines
887 B
Dart
38 lines
887 B
Dart
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/*class: Super:
|
|
maxInheritancePath=1,
|
|
superclasses=[Object]
|
|
*/
|
|
class Super {
|
|
/*member: Super.extendedFieldDeclaredMethod#cls:
|
|
classBuilder=Super,
|
|
isSourceDeclaration
|
|
*/
|
|
/*member: Super.extendedFieldDeclaredMethod=#cls:
|
|
classBuilder=Super,
|
|
isSourceDeclaration
|
|
*/
|
|
int extendedFieldDeclaredMethod = 0;
|
|
}
|
|
|
|
/*class: Class:
|
|
maxInheritancePath=2,
|
|
superclasses=[
|
|
Object,
|
|
Super]
|
|
*/
|
|
/*member: Class.extendedFieldDeclaredMethod=#cls:
|
|
classBuilder=Super,
|
|
isSourceDeclaration
|
|
*/
|
|
class Class extends Super {
|
|
/*member: Class.extendedFieldDeclaredMethod#cls:
|
|
classBuilder=Class,
|
|
isSourceDeclaration
|
|
*/
|
|
void extendedFieldDeclaredMethod() {}
|
|
}
|