Gauravsingh Sisodia

Results 12 comments of Gauravsingh Sisodia

I'm sorry. I'm not sure I understand your comment and the picture. Can you provide more information? But I guess you want to run NVelox in a docker container just...

Neovim configuration is located at `$XDG_CONFIG_HOME/nvim/init.lua`, usually `XDG_CONFIG_HOME` is defined as `~/.config/`. If you use the [install script](https://github.com/Xaerru/NVelox/tree/lua#install) to install NVelox, it'll be installed in `~/.config/nvim`. You can set `$(XDG_CONFIG_HOME)`...

I assume that you are using the main branch. It's not ready yet. Use the [lua](https://github.com/Xaerru/NVelox/tree/lua) branch instead.

Regarding when the `ClassProcedure` should be virtual. We do runtime polymorphism only when the variable we are calling the subroutine on is of type `ClassType`. "deferred" type attribute just means...

About procedure resolution: https://j3-fortran.org/doc/year/24/24-007.pdf#subsection.2943 > If the binding-name in a procedure-designator (R1522) is that of a specific type-bound procedure, the procedure referenced is the one bound to that name in...

The tests are now passing. I now need to implement functionality for when an instance variable accesses a class member. If it performs a read, it should access the global...

In LFortran ASR, `Print` node was refactored to only contain `StringFormat` or a single `StringConstant`. Also for `StringFormat`, only `FormatFortran` is implemented as of now. https://github.com/lfortran/lfortran/issues/2543 https://github.com/lfortran/lfortran/pull/4696 I think this...

> StructType ttype has to be updated to have a list of types, and no reference to the symbol table. We can do this if we don't want the symbol...

I'll explain why this deallocate is needed: `integration_tests/do_loop_07.f90` : ```fortran program do_loop_07 integer :: i, s do i = 1, 3 if (i == 1) then cycle end if !...

> Can we deallocate that variable when it's first inserted? seems cleaner and more obvious? We can try it, need to figure out the conditions.