Skip to content

Instantly share code, notes, and snippets.

@fakestarbaby
Created December 11, 2013 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fakestarbaby/7906141 to your computer and use it in GitHub Desktop.
Save fakestarbaby/7906141 to your computer and use it in GitHub Desktop.
Lua で実行中のファイル名称と行番号を取得する ref: http://qiita.com/fakestarbaby/items/385c8a8a8b8f0db6d57c
local debugInfo = debug.getinfo(1)
local fileName = debugInfo.source:match("[^/]*$")
local debugInfo = debug.getinfo(1)
local currentLine = debugInfo.currentline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment