webmcp

view framework/env/execute/finalizers.lua @ 309:4e69ce9a6365

Mechanism to load, compile, and cache Lua code from the filesystem
author jbe
date Sun Mar 22 22:25:37 2015 +0100 (2015-03-22)
parents 2ddbb44680f7
children 1fcdd5c6f498
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] = nil
12 end
13 end

Impressum / About Us