tanay-man

Results 8 issues of tanay-man

```py from lpython import i32 class Base: def __init__(self:"Base"): self.x_A : i32 = 10 class Derived(Base): pass def check(x: Base): print(x.x_A) def main(): d : Derived = Derived() check(d) main()...

Example : ```py from lpython import i32 class Base: def __init__(self:"Base"): self.x_A : i32 = 10 class Derived(Base): def __init__(self:"Derived") : super().__init__() self.y_B : i32 = 6 def get_x_A(self:"Derived"): print(self.x_A)...

Currently : ```py p1 : Class = Class(1,2) #transformed into in the ASR p1: Class = Class() p1___init__(p1, 1, 2) ``` Instead in the ASR it should be kept as...

- [ ] https://github.com/lcompilers/lpython/pull/2743 - [ ] https://github.com/lcompilers/lpython/pull/2750 - [ ] https://github.com/lcompilers/lpython/pull/2775 - [ ] https://github.com/lcompilers/lpython/pull/2794 - [ ] https://github.com/lcompilers/lpython/pull/2795

refactor

Example : ```py @dataclass class MyClass4: i_1: bool i_8: i8 i_16: i16 i_32: i32 i_64: i64 ``` This is in the PR -> https://github.com/lcompilers/lpython/pull/2801 The failure is not always reproducible....