mirror of
				https://github.com/janet-lang/janet
				synced 2025-11-04 09:33:02 +00:00 
			
		
		
		
	added support for tables/structs with prototypes in thaw
This commit is contained in:
		@@ -2148,8 +2148,8 @@
 | 
			
		||||
  types will not be recursively thawed, but all other types will`
 | 
			
		||||
  [ds]
 | 
			
		||||
  (case (type ds)
 | 
			
		||||
    :table (walk-dict thaw ds)
 | 
			
		||||
    :struct (walk-dict thaw ds)
 | 
			
		||||
    :table (walk-dict thaw (table/proto-flatten ds))
 | 
			
		||||
    :struct (walk-dict thaw (struct/proto-flatten ds))
 | 
			
		||||
    :array (walk-ind thaw ds)
 | 
			
		||||
    :tuple (walk-ind thaw ds)
 | 
			
		||||
    :string (buffer ds)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user