Comment vider fonction lua morceau de ficelle?

Comment vider fonction lua morceau de ficelle ?

function test(a, b)
  local c = a + b
  return c
end

print( type(test) )  --> function
print( test )         --> function: 0053B108
print( dumpToString(test) )

Je souhaite dumpToString résultat est le suivant:

function test(a, b)
  local c = a + b
  return c
end

Comment faire ?

=== update1 ===

Je veux connecter automatiquement et injecter du code.

InformationsquelleAutor Flash | 2013-02-06