Iñaki Amatria Barral
Iñaki Amatria Barral
- `tree-sitter-fortran` version is: `64e11001d7ef3e8ac18e55a3a2d811fe36430923` - Reduced test case is: ```fortran ! foo.f90 program main character*1, str(128) str = "Hello, World!" print *, str end ``` - Current behavior: ```lisp...
- `tree-sitter-fortran` version is: `64e11001d7ef3e8ac18e55a3a2d811fe36430923` - Reduced test case is: ```fortran ! foo.f90 program main character(len=128) str / 'Hello, World!' / print *, str end ``` - Current behavior: ```lisp...
- `tree-sitter-fortran` version is: `64e11001d7ef3e8ac18e55a3a2d811fe36430923` - Reduced test case is: ```fortran ! foo.f90 program main integer, dimension(10, 10) :: if do i = 1, 10 if(i, i) = 0 end...
- `tree-sitter-fortran` version is: `64e11001d7ef3e8ac18e55a3a2d811fe36430923` - Reduced test case is: ```fortran ! foo.f90 program main character(len=128) :: str pointer(str_ptr, str) integer :: foo end ``` - Current behavior: ```lisp (translation_unit...
- `tree-sitter-fortran` version is: `64e11001d7ef3e8ac18e55a3a2d811fe36430923` - Reduced test case is: ```fortran ! foo.f90 program main character(len=32) :: format character(len=1) :: width format(7:9) = width//'.'//width end ``` - Current behavior: ```lisp...
This PR updates `package.json` and `package-lock.json` to lock in the project's `tree-sitter` and `tree-sitter-cli` versions for consistency, especially since the workflow here involves committing autogenerated files that may change between...