StringLiteralVisitor<R> constructor

StringLiteralVisitor<R>({
  1. required String filePath,
  2. required CompilationUnit unit,
  3. required void foundStringLiteral(
    1. FoundStringLiteral foundStringLiteral
    ),
})

Implementation

StringLiteralVisitor({
  required this.filePath,
  required this.unit,
  required this.foundStringLiteral,
}) : lineInfo = unit.lineInfo;