transpiler/src/main/java/com/google/cloud/verticals/foundations/dataharmonization/error/ErrorStrategy.java [52:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    int startLine = token.getLine();
    int startCol = token.getCharPositionInLine() + 1;
    int endLine = token.getLine();
    int endCol = token.getCharPositionInLine() + token.getText().length() + 1;

    issues.add(
        new TranspilationIssue(
            file,
            startLine,
            startCol,
            endLine,
            endCol,
            String.format(
                "unexpected %s, expecting %s",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



transpiler/src/main/java/com/google/cloud/verticals/foundations/dataharmonization/error/ErrorStrategy.java [85:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    int startLine = token.getLine();
    int startCol = token.getCharPositionInLine() + 1;
    int endLine = token.getLine();
    int endCol = token.getCharPositionInLine() + token.getText().length() + 1;

    issues.add(
        new TranspilationIssue(
            file,
            startLine,
            startCol,
            endLine,
            endCol,
            String.format(
                "unexpected %s, expecting %s",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



