• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

dart-lang / ffigen / 4428795187

pending completion
4428795187

Pull #534

github

GitHub
Merge e0c7e1bbb into 92dc22649
Pull Request #534: Detect LLVM installation using scoop

4 of 4 new or added lines in 1 file covered. (100.0%)

3190 of 3457 relevant lines covered (92.28%)

24.69 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/lib/src/code_generator/binding_string.dart
1
// Copyright (c) 2020, 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
/// A Binding's String representation.
6
class BindingString {
7
  // Meta data, (not used for generation).
8
  final BindingStringType type;
9
  final String string;
10

11
  const BindingString({required this.type, required this.string});
32✔
12

13
  @override
×
14
  String toString() => string;
×
15
}
16

17
/// A [BindingString]'s type.
18
enum BindingStringType {
19
  func,
20
  struct,
21
  union,
22
  constant,
23
  global,
24
  enumClass,
25
  typeDef,
26
  objcInterface,
27
  objcBlock,
28
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc