Skip to content

Commit 1a1d458

Browse files
authored
Merge pull request #34 from code-shoily/migrate_to_nnbd
Migrate to nnbd
2 parents 0aa9dac + 5d45354 commit 1a1d458

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1094
-1042
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: dart
22

33
dart:
4-
- stable
4+
- beta
55

66
dart_task:
77
- test

analysis_options.yaml

+70-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,77 @@ analyzer:
33
# - path/to/excluded/files/**
44

55
# Lint rules and documentation, see http://dart-lang.github.io/linter/lints
6-
7-
include: package:effective_dart/analysis_options.1.2.0.yaml
6+
# NOTE: The contents of `Effective Dart` have been copied over because it does not yet support NNBD
87

98
linter:
109
rules:
10+
# STYLE
11+
- camel_case_types
12+
- camel_case_extensions
13+
- library_names
14+
- file_names
15+
- library_prefixes
16+
- non_constant_identifier_names
17+
- constant_identifier_names # prefer
18+
- directives_ordering
19+
- lines_longer_than_80_chars # avoid
20+
- curly_braces_in_flow_control_structures
1121
- prefer_single_quotes
22+
23+
# DOCUMENTATION
24+
- slash_for_doc_comments
25+
- package_api_docs # prefer
26+
- public_member_api_docs # prefer
27+
#- comment_references # Unused because https://github.com/dart-lang/sdk/issues/36974
28+
29+
# USAGE
30+
- implementation_imports
31+
- avoid_relative_lib_imports
32+
- prefer_relative_imports
33+
- prefer_adjacent_string_concatenation
34+
- prefer_interpolation_to_compose_strings # prefer
35+
- unnecessary_brace_in_string_interps # avoid
36+
- prefer_collection_literals
37+
- prefer_is_empty
38+
- prefer_is_not_empty
39+
- avoid_function_literals_in_foreach_calls # avoid
40+
- prefer_iterable_whereType
41+
- prefer_function_declarations_over_variables
42+
- unnecessary_lambdas
43+
- prefer_equal_for_default_values
44+
- avoid_init_to_null
45+
- unnecessary_getters_setters
46+
#- unnecessary_getters # prefer # Disabled pending fix: https://github.com/dart-lang/linter/issues/23
47+
#- prefer_expression_function_bodies # consider
48+
- unnecessary_this
49+
- prefer_initializing_formals
50+
- type_init_formals
51+
- empty_constructor_bodies
52+
- unnecessary_new
53+
- unnecessary_const
54+
- avoid_catches_without_on_clauses # avoid
55+
- avoid_catching_errors
56+
- use_rethrow_when_possible
57+
58+
# DESIGN
59+
- use_to_and_as_if_applicable # prefer
60+
- one_member_abstracts # avoid
61+
- avoid_classes_with_only_static_members # avoid
62+
- prefer_mixin
63+
- prefer_final_fields # prefer
64+
- use_setters_to_change_properties
65+
- avoid_setters_without_getters
66+
- avoid_returning_null # avoid
67+
- avoid_returning_this # avoid
68+
- type_annotate_public_apis # prefer
69+
#- prefer_typing_uninitialized_variables # consider
70+
- omit_local_variable_types # avoid
71+
#- avoid_types_on_closure_parameters # avoid
72+
- avoid_return_types_on_setters
73+
- prefer_generic_function_type_aliases
74+
- avoid_private_typedef_functions # prefer
75+
#- use_function_type_syntax_for_parameters # consider
76+
- avoid_positional_boolean_parameters # avoid
77+
- hash_and_equals
78+
- avoid_equals_and_hash_code_on_mutable_classes # avoid
79+
- avoid_null_checks_in_equality_operators

lib/graph/bellman_ford.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'vertex.dart';
55

66
/// Run the Bellman Ford algorithm to get the shortest paths from [source] to
77
/// all vertices.
8-
HashMap<Vertex, num> bellmanFord(SimpleGraph graph, Vertex source) {
8+
HashMap<Vertex, num>? bellmanFord(SimpleGraph graph, Vertex source) {
99
var distances = HashMap<Vertex, num>();
1010
distances[source] = 0;
1111

@@ -14,7 +14,7 @@ HashMap<Vertex, num> bellmanFord(SimpleGraph graph, Vertex source) {
1414

1515
bool shouldUpdate(Vertex u, Vertex v, num w) {
1616
if (!distances.containsKey(u)) return false;
17-
var uValue = distances[u];
17+
var uValue = distances[u]!;
1818
var vValue = distances[v] ?? (uValue + w + 1);
1919

2020
return uValue + w < vValue;
@@ -26,7 +26,7 @@ HashMap<Vertex, num> bellmanFord(SimpleGraph graph, Vertex source) {
2626
var v = edge[1];
2727
var w = edge[2];
2828
if (shouldUpdate(u, v, w)) {
29-
distances[v] = distances[u] + w;
29+
distances[v] = distances[u]! + w;
3030
}
3131
}
3232

lib/graph/dijkstra.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ bool _shouldRelax(Map path, Vertex u, Vertex v, num w) => path.containsKey(v)
3636

3737
Vertex _minimumDistance(
3838
List<Vertex> vertices, Map<Vertex, int> path, Set<Vertex> pathSet) {
39-
int min;
40-
Vertex vertex;
39+
int? min;
40+
Vertex? vertex;
4141

4242
for (var v in vertices) {
43-
var updateMinimum = min == null || (path.containsKey(v) && path[v] < min);
43+
var updateMinimum = min == null || (path.containsKey(v) && path[v]! < min);
4444
if (updateMinimum && !pathSet.contains(v)) {
4545
min = path[v];
4646
vertex = v;
4747
}
4848
}
4949

50-
return vertex;
50+
return vertex!;
5151
}
5252

5353
void _ensurePositiveWeight(SimpleGraph g) {

lib/graph/simple_graph.dart

+6-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'vertex.dart';
22

33
/// A Graph Type
44
class SimpleGraph<T> {
5-
Set<Vertex<T>> _vertices;
5+
final Set<Vertex<T>> _vertices;
66

77
/// Vertices of this graph
88
List<Vertex<T>> get vertices => List<Vertex<T>>.unmodifiable(_vertices);
@@ -12,9 +12,7 @@ class SimpleGraph<T> {
1212
final bool isDigraph;
1313

1414
/// Create a new graph
15-
SimpleGraph({this.isDigraph = true}) {
16-
_vertices = <Vertex<T>>{};
17-
}
15+
SimpleGraph({this.isDigraph = true}) : _vertices = <Vertex<T>>{};
1816

1917
/// Total number of vertices for this graph
2018
int get numberOfVertices => _vertices.length;
@@ -24,7 +22,7 @@ class SimpleGraph<T> {
2422
_vertices.map((v) => v.outDegree).fold(0, (a, b) => a + b);
2523

2624
/// Adds an edge
27-
void addEdge(Vertex src, Vertex dst, [num weight = 1]) {
25+
void addEdge(Vertex<T> src, Vertex<T> dst, [num weight = 1]) {
2826
unlockVertices(<Vertex>{src, dst});
2927
if (src.key == dst.key) throw Error();
3028

@@ -58,20 +56,20 @@ class SimpleGraph<T> {
5856
bool get isEmpty => numberOfEdges == 0;
5957

6058
/// Adds a new vertex
61-
bool addVertex(Vertex vertex) => _vertices.add(vertex);
59+
bool addVertex(Vertex<T> vertex) => _vertices.add(vertex);
6260

6361
/// Removes a vertex
6462
bool removeVertex(Vertex vertex) {
6563
var edgesRemoved = vertices.contains(vertex)
6664
? [
6765
...vertex.outgoingConnections.entries.map((e) => [vertex, e.key]),
6866
...vertex.incomingVertices.map((e) => [e, vertex])
69-
].fold(true, (acc, v) => acc && removeEdge(v[0], v[1]))
67+
].fold(true, (bool acc, v) => acc && removeEdge(v[0], v[1]))
7068
: false;
7169
return edgesRemoved ? _vertices.remove(vertex) : edgesRemoved;
7270
}
7371

74-
Vertex<T> _getOrAddVertex(Vertex vertex) =>
72+
Vertex<T> _getOrAddVertex(Vertex<T> vertex) =>
7573
_vertices.add(vertex) ? vertex : vertex;
7674

7775
/// Gets an edge list for [this].

lib/graph/topological_sort.dart

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'simple_graph.dart';
44
import 'vertex.dart';
55

66
/// Returns topological sort using Kahn's algorithm
7-
List<Vertex> topologicalSort(SimpleGraph graph) {
7+
List<Vertex>? topologicalSort(SimpleGraph graph) {
88
var sorted = <Vertex>[];
99
var inDegreeData = inDegrees(graph);
1010
var noInDegrees = <Vertex>{};
@@ -15,13 +15,14 @@ List<Vertex> topologicalSort(SimpleGraph graph) {
1515
}
1616
});
1717

18-
while (!noInDegrees.isEmpty) {
18+
while (noInDegrees.isNotEmpty) {
1919
var vertex = noInDegrees.first;
2020
noInDegrees.remove(vertex);
2121
sorted.add(vertex);
2222

2323
for (var connectedVertex in vertex.outgoingVertices) {
24-
if (--inDegreeData[connectedVertex] == 0) {
24+
inDegreeData[connectedVertex] = inDegreeData[connectedVertex]! - 1;
25+
if (inDegreeData[connectedVertex] == 0) {
2526
noInDegrees.add(connectedVertex);
2627
}
2728
}
@@ -34,7 +35,7 @@ List<Vertex> topologicalSort(SimpleGraph graph) {
3435
}
3536

3637
bool _detectCycle(HashMap<Vertex, int> inDegreeData) =>
37-
inDegreeData.values.where((element) => element > 0).length > 0;
38+
inDegreeData.values.where((element) => element > 0).isNotEmpty;
3839

3940
/// Returns in degrees of all vertices of [graph]
4041
HashMap<Vertex, int> inDegrees(SimpleGraph graph) {

lib/graph/vertex.dart

+5-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Vertex<T> {
1111
String get key => _key;
1212

1313
/// Optional value
14-
T value;
14+
T? value;
1515

1616
final LinkedHashSet<Vertex> _incomingVertices;
1717

@@ -22,16 +22,14 @@ class Vertex<T> {
2222
final LinkedHashMap<Vertex, num> _outgoingConnections;
2323

2424
/// Outgoing connections from this [Vertex]
25-
UnmodifiableMapView<Vertex, num> get outgoingConnections =>
25+
Map<Vertex, num> get outgoingConnections =>
2626
Map<Vertex, num>.unmodifiable(_outgoingConnections);
2727

2828
/// Constructor
29-
Vertex(this._key, [T value])
29+
Vertex(this._key, [this.value])
3030
: _isLocked = true,
31-
_incomingVertices = <Vertex>{} as LinkedHashSet,
32-
_outgoingConnections = <Vertex, num>{} as LinkedHashMap {
33-
this.value = value ?? key;
34-
}
31+
_incomingVertices = <Vertex>{} as LinkedHashSet<Vertex>,
32+
_outgoingConnections = <Vertex, num>{} as LinkedHashMap<Vertex, num>;
3533

3634
/// Lock [this] vertex, cannot modify after it is locked
3735
void lock() => _isLocked = true;

lib/heaps/base.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstract class HeapBase<T> {
2727
bool get isEmpty;
2828

2929
/// The length of this heap
30-
int length;
30+
int get length;
3131

3232
/// Inserts [item] into [this]
3333
void insert(T item);

0 commit comments

Comments
 (0)