dao-xyz / borsh-ts

⚡️fast TypeScript implementation of Borsh serialization format
Apache License 2.0
37 stars 3 forks source link

Field with same type as Class causes causes "RangeError: Maximum call stack size exceeded" #16

Open marcus-pousette opened 1 year ago

marcus-pousette commented 1 year ago
class A 
{
   @field({type: A})
   a: A
}