dplassgit / d2lang

D2 is a strongly-typed, statically-typed, (mostly) inferred-type compiled language.
MIT License
7 stars 0 forks source link

Don't do NPE checks for obviously non-null objects #331

Closed dplassgit closed 3 months ago

dplassgit commented 4 months ago

E.g.,

a:string[1]
a[0]="hi"

Doesn't need to check that a is not null on the 2nd line

dplassgit commented 3 months ago

Superseded by the NotNullOptimizer