|
|
|
|
|
by pjmlp
1765 days ago
|
|
Apparently you missed my go vet reference on purpose, just make all of us aware of it not being the same. Same applies to using on .NET, where forgetting to call using on an IDisposable type can trigger a compiler error, via Roslyn plugins. Also seem to be unaware how closure based RAII works on FP languages. RAII isn't triggered on heap allocated objects unless smart pointers are used everywhere. Python doesn't have a static analysis tool for with, nor does it support value types with stack allocation. Not all GC languages were born equal. |
|
It's triggered unless you have memory leaks.