about summary refs log tree commit diff stats
path: root/src/html/performance.nim
Commit message (Collapse)AuthorAgeFilesLines
* performance: stub getEntries*bptato2025-02-201-0/+12
|
* fromjs, javascript: optimize out class name registrybptato2025-02-191-2/+1
| | | | | | | | Instead of hashing the class name for isInstanceOf, we now just reuse the Nim type pointer -> JSClassID map, which should be more efficient. This removes getClass and hasClass; these can be replaced by just reusing the class ID returned from registerType.
* Add performance modulebptato2025-01-091-0/+29
Just to replace what QJS-NG has, because I don't want to expose a nanosecond precision clock.