File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM scratch
1
+ FROM drydock-prod.workiva.net/workiva/dart2_base_image:2
2
+ ADD pubspec.yaml pubspec.yaml
3
+ RUN dart pub get
4
+ FROM scratch
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class SymbolGenerator {
17
17
/// that should be used for the element. If no element is found,
18
18
/// [_localElementIndex] should be used to generate one.
19
19
///
20
- /// Use []
20
+ /// Use [_localSymbolFor] to generate new local symbols
21
21
Map <Element , String > _localElementRegistry = {};
22
22
23
23
SymbolGenerator (this ._packageConfig, this ._pubspec);
@@ -47,7 +47,7 @@ class SymbolGenerator {
47
47
return [
48
48
'scip-dart' ,
49
49
_getPackage (element),
50
- _getDescriptor (element) ,
50
+ descriptor ,
51
51
].join (' ' );
52
52
}
53
53
Original file line number Diff line number Diff line change
1
+ export 'src/symbol_generator.dart' show SymbolGenerator;
You can’t perform that action at this time.
0 commit comments