From 59e989480dbfebfb43f539323fba2ce95928af6d Mon Sep 17 00:00:00 2001 From: Cheyi Lin Date: Thu, 27 Jun 2013 18:03:26 +0800 Subject: [PATCH] remove local declarations at the top --- inspect.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/inspect.lua b/inspect.lua index dd86321..acb1392 100644 --- a/inspect.lua +++ b/inspect.lua @@ -5,16 +5,6 @@ -- inspired by http://lua-users.org/wiki/TableSerialization ----------------------------------------------------------------------------------------------------------------------- -local type = type -local ipairs, pairs = ipairs, pairs -local string = string -local table = table -local tostring = tostring -local pcall = pcall -local getmetatable, setmetatable = getmetatable, setmetatable -local rawget, rawset = rawget, rawset -local math = math - local inspect ={} inspect.__VERSION = '1.2.0'