blob: ab79b7db65d085151596d738b6541c8d7eba113a [file]
# Copyright (c) 2026, 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.
sources: |
import 'dart:developer';
class C {
final String _s;
C({required String s}) : _s = s;
}
void main() {
debugger();
C c = new C(s: "hello");
print(c);
}
definitions: ["s"]
# String
definition_types: ["dart:core", "_OneByteString", "1", "0"]
type_definitions: []
type_bounds: []
type_defaults: []
method: "C"
position: "#C"
static: false
offset: 76 # On "s" in the parameter list
scriptUri: main.dart
expression: |
s