datavis-tech / topologica

Minimal library for reactive dataflow programming. Based on topological sort.
MIT License
50 stars 1 forks source link

Investigate use of ES6 Proxy #50

Open curran opened 5 years ago

curran commented 5 years ago

Split out from #49. /cc @caracal7

curran commented 5 years ago

Using ES6 Proxy might be a great direction, but could it handle setting multiple properties simultaneously, synchronously like the existing set method? I don't think it can.

Maybe we'd need to keep set for the purpose of setting multiple properties simultaneously, and we could implement the ES6 proxy approach for cases where only a single property needs to be set.