webmcp

view framework/env/execute/finalizers.lua @ 238:4a735f198ded

Bugfix for globals exception (compare with _G instead of _ENV)
author jbe
date Sat Feb 28 23:58:51 2015 +0100 (2015-02-28)
parents 2c2bcde0df79
children 2ddbb44680f7
line source
1 --[[--
2 execute.finalizers()
4 Executes that code in initializers which is placed after execute.inner().
6 --]]--
8 function execute.finalizers()
9 for i = #execute._finalizers, 1, -1 do
10 execute._finalizers[i]()
11 execute._finalizers[i] = 0
12 end
13 end

Impressum / About Us