Files
sdk/pkg/compiler/test/dump_info/data/deferred_future/lib2.dart
T
Mayank Patke 7103d43876 [dart2js] Add powerset bits for interceptor domain.
Change-Id: Id9509c6b6eb8143263763e508512c0703d4aa493
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/404500
Reviewed-by: Stephen Adams <sra@google.com>
Commit-Queue: Mayank Patke <fishythefish@google.com>
2025-04-16 18:14:21 -07:00

59 lines
1.5 KiB
Dart

// Copyright (c) 2019, 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.
/*library: library=[{
"id": "library/memory:sdk/tests/web/native/lib2.dart::",
"kind": "library",
"name": "<unnamed>",
"size": 68,
"children": [
"class/memory:sdk/tests/web/native/lib2.dart::A"
],
"canonicalUri": "memory:sdk/tests/web/native/lib2.dart"
}]*/
/*class: A:class=[{
"id": "class/memory:sdk/tests/web/native/lib2.dart::A",
"kind": "class",
"name": "A",
"size": 68,
"outputUnit": "outputUnit/1",
"parent": "library/memory:sdk/tests/web/native/lib2.dart::",
"modifiers": {
"abstract": false
},
"children": [
"function/memory:sdk/tests/web/native/lib2.dart::A.method"
],
"supers": []
}]*/
class A {
const A();
/*member: A.method:function=[{
"id": "function/memory:sdk/tests/web/native/lib2.dart::A.method",
"kind": "function",
"name": "method",
"size": 0,
"outputUnit": "outputUnit/1",
"parent": "class/memory:sdk/tests/web/native/lib2.dart::A",
"children": [],
"modifiers": {
"static": false,
"const": false,
"factory": false,
"external": false
},
"returnType": "dynamic",
"inferredReturnType": "[null|powerset={null}]",
"parameters": [],
"sideEffects": "SideEffects(reads nothing; writes nothing)",
"inlinedCount": 1,
"code": "",
"type": "dynamic Function()",
"functionKind": 2
}]*/
method() {}
}