feat: implement foreign object finalization and expose wrenCollectGarbage API

Add finalizer invocation for foreign objects during garbage collection by calling wrenFinalizeForeign in wrenFreeObj. Expose wrenCollectGarbage as a public API function and update internal calls accordingly. Ensure the "<finalize>" symbol is always registered in the symbol table even when no finalizer is provided. Add test fixtures for Resource class with finalizer and Api.gc/Api.finalized methods to verify finalization behavior across multiple GC cycles.
This commit is contained in:
Bob Nystrom
2015-09-01 04:56:21 +00:00
parent 2a8847fa57
commit 4665ec1913
6 changed files with 103 additions and 10 deletions
+27
View File
@@ -1,3 +1,8 @@
class Api {
foreign static gc()
foreign static finalized
}
// Class with a default constructor.
foreign class Counter {
foreign increment(amount)
@@ -46,3 +51,25 @@ var error = Fiber.new {
class Subclass is Point {}
}.try()
IO.print(error) // expect: Class 'Subclass' cannot inherit from foreign class 'Point'.
// Class with a finalizer.
foreign class Resource {}
var resources = [
Resource.new(),
Resource.new(),
Resource.new()
]
Api.gc()
IO.print(Api.finalized) // expect: 0
resources.removeAt(-1)
Api.gc()
IO.print(Api.finalized) // expect: 1
resources.clear()
Api.gc()
IO.print(Api.finalized) // expect: 3