Pumunta sa nilalaman
Pangunahing pagpipilian
Pangunahing pagpipilian
ilipat sa gilid
itago
Maglibot
Unang pahina
Mga nilalaman
Napiling nilalaman
Alinmang artikulo
Patungkol sa Wikipedia
Mga kaganapan
Pakikihalubilo
Pamayanan
Kapihan
Mga huling binago
Makipag-ugnayan
Tulong
Hanapin
Hanapin
Itsura
Donasyon
Gumawa ng account
Mag-login
Mga pansariling kagamitan
Donasyon
Mag-ambag
Gumawa ng account
Mag-login
Mga pahina para sa naka-logout na mga patnugot o editor
alamin pa
Usapan
Binabago:
Module:SimpleDebug/doc
Magdagdag ng wika
Modyul
Usapan
Tagalog
Basahin
Baguhin ang wikitext
Tingnan ang kasaysayan
Mga kagamitan
Mga kagamitan
ilipat sa gilid
itago
Mga aksyon
Basahin
Baguhin ang wikitext
Tingnan ang kasaysayan
Pangkalahatan
Mga nakaturo rito
Kaugnay na pagbabago
Mag-upload ng file
Impormasyon ng pahina
Kumuha ng pinaikling URL
I-download ang QR code
Itsura
ilipat sa gilid
itago
Babala
: Hindi ka naka-login. Ang iyong IP address ay maitatala sa kasaysayan ng pagbabago ng pahinang ito.
Pagtingin ng panlaban spam.
HUWAG
punuan ito!
Contains a functions to help [[:en:Help:Lua debugging#How debug|debug the lua modules]]. It allows to collect and view the values of several variables and/or points in your lua program, from a module (which is usual) or in several modules (which are required from the main module). It is designed so that its functions are called from within the module that is to be debugged, calls that will have to be part of the code (of the module that you have designed, or that you want to improve or adapt) until you decide to delete them (when you already have determined the bug). Thus, you do not have to call any of its functions from an invoke. ==Uses== {| class="wikitable" |- ! colspan="3" | One or several points to watch |- | colspan="3" | Function abbreviations: <code>w</code>: where. <code>n</code>: names. <code>v</code>: variables. <code>s</code>: string. |- | colspan="3" |'''Variables''' |- | '''Name'''||'''Default'''|| |- | <code>tab.oneline</code> || true|| * If it is ''false'' or it is ''true'' and contains nested tables, it will show a line for each item in the table and with an indent for each nested table. * If it is ''true'' and it does not contain nested tables, it shows the table in a line. |- | <code>tab.allidx</code> || false || If it is true then also displays the numerical indexes of a table. |- | <code>dec</code> || -1 || Spaces for the decimals: *-1: It displays all required decimals. *0: No decimals. *n: 1: one decimal, 2: two decimals, etc. |- |<code>enabled</code> || true || If it is false all calls to the below functions do nothing. |- |<code>nohtml</code> || false || In strings, it replaces < for βͺ‘ and > for βͺ’. |- |<code>plaintext</code> || false || Deletes html format. |- ! colspan="3" |One point to watch |- | colspan="2" |'''Functions''' |- | colspan="2" |<code>w (where)</code> || *''where'': point label. |- | colspan="2" |<code>v (...)</code> || *''...'': a number of variables = var1, var2... |- | colspan="2" |<code>wv (where, ...)</code> || *''where'': point label. *''...'': a number of variables = var1, var2... |- | colspan="2" |<code>nv (...)</code> || *''...'': a number of pairs of name-variable = name1, var1, name2, var2.... |- | colspan="2" |<code>wnv (where, ...)</code> || *''where'': point label. *''...'': a number of pairs of name-variable = name1, var1, name2, var2.... |- ! colspan="3" |Several points to watch |- | colspan="3" |'''Variables''' |- | '''Name'''||'''Default'''|| |- | <code>s</code> || || The string variable that holds the returned values from the next functions. |- | <code>maxlines.num</code> || 100 || The maxim number of lines (on calling the next functions). |- | <code>maxlines.doerror</code> || true || If it is true and <code>maxlines.num</code> is reached, <code>error(s)</code> is called. |- |<code>counter</code> || false || Adds an autoincremental number at the beginning of each call of a function. |- | colspan="3" |'''Functions''' |- | colspan="2" |<code>breakline ()</code> || Adds a break line in <code>s</code>. |- | colspan="2" |<code>wtos (where)</code> || Equal to <code>w</code>, but the return string is stored in <code>s</code>. |- | colspan="2" |<code>vtos (...)</code> || Equal to <code>v</code>, but the return string is stored in <code>s</code>. |- | colspan="2" |<code>wvtos (where, ...)</code> || Equal to <code>wv</code>, but the return string is stored in <code>s</code>. |- | colspan="2" |<code>nvtos (...)</code> || Equal to <code>nv</code>, but the return string is stored in <code>s</code>. |- | colspan="2" |<code>wnvtos (where, ...)</code> || Igual a <code>wnv</code>, but the return string is stored in <code>s</code>. |} ==Examples== ===One point to watch === ==== Following the flow ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" return SD.v ('Here is reached') </syntaxhighlight> returns: Here is reached ==== Number of decimal places and value of a variable ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.dec = 2 return SD.v (1/3) </syntaxhighlight> returns: 0.33 ==== Nohtml ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.nohtml = true return SD.v ("<b>bold</b>") </syntaxhighlight> returns: "βͺ‘bβͺ’boldβͺ‘/bβͺ’" ==== Plaintext ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.plaintext = true return SD.v ("<b>bold</b>") </syntaxhighlight> returns: "bold" ==== The value of several variables ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = 12 local b = 'Hello' return SD.v (a,b) </syntaxhighlight> returns: 12 ββ’β "Hello" ==== Non-assigned variable detection ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = true return SD.v (a,b) </syntaxhighlight> returns: true ββ’β nil ====The value of a table==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = {1, tab='a', 'b'} return SD.v (a) </syntaxhighlight> returns: { 1, "b", [tab]="a", } <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = {{1,2,3},{4,5,6},{7,8,9}} return SD.v (a) </syntaxhighlight> returns: { [1] = {1, 2, 3, }, [2] = {4, 5, 6, }, [3] = {7, 8, 9, }, } <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = {{First=1,2,3},{4,Second=5,6},{7,8,9}} return SD.v (a) </syntaxhighlight> returns: { [1] = {2, 3, [First]=1, }, [2] = {4, 6, [Second]=5, }, [3] = {7, 8, 9, }, } <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.tab.allidx = true local a = {{1,2,3},{4,nil,6},{7,8,9}} return SD.v (a) </syntaxhighlight> returns: { [1]={[1]=1, [2]=2, [3]=3, }, [2]={[1]=4, [3]=6, }, [3]={[1]=7, [2]=8, [3]=9, }, } Usually, you implement these functions with error function: <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = {{1,2,3},{4,5,6},{7,8,9}} error (SD.v (a)) </syntaxhighlight> displays: {{color|red|'''Lua error:Module:''YourModule'':''Line'':{'''}} <div style="color:red; font-family:monospace, monospace"><b> [1] = {1, 2, 3, },<br> [2] = {4, 5, 6, },<br> [3] = {7, 8, 9, },<br> } </b></div> ==== All values of a table in multiline ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.tab.oneline = false local a = {{First=1,2,3},'Middle',{4,Second=5,6}} return SD.v (a) </syntaxhighlight> retorna: <pre> { [1] = { [1] = 2, [2] = 3, ["First"] = 1, }, [2] = "Middle", [3] = { [1] = 4, [2] = 6, ["Second"] = 5, }, } </pre> ==== The value of several variables with their name in a point ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" local a = 12 local b = 'Hello' return SD.nv ('a',a,'b',b) </syntaxhighlight> returns: a: 12 ββ’β b: "Hello" ===Several points to watch=== ==== Following the flow ==== <syntaxhighlight lang="lua"> local SD = require "Module:SimpleDebug" local tab = {1,12,7} function p.CheckValues () local function LittleNum() SD.wtos ('little number') end local function BigNum(num) SD.wtos ('big='..num) end for i, num in ipairs(tab) do if num > 9 then BigNum(num) else LittleNum() end end error (SD.s) end </syntaxhighlight> returns: {{color|red|'''Lua Error:Module:''Your module'':''Line'':'''}} {{color|red|'''little number'''}} {{color|red|'''big{{=}}12'''}} {{color|red|'''little number.'''}} ====With counter==== <syntaxhighlight lang="lua"> local SD = require "Module:SimpleDebug" function Increm() local n = 0 for i = 1, 3 do n = n + 2 SD.vtos (n) end end SD.counter = true Increm() return SD.s </syntaxhighlight> returns: 1 ββ’β 2 2 ββ’β 4 3 ββ’β 6 ==== Monitoring of several variables ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" a = 12 b = 'Hello' SD.vtos (1,a,b) a = a + a b = b..' world!' SD.vtos ('Finally',a,b) return SD.s </syntaxhighlight> returns: 1 => 12 ββ’β "Hello" Finally => 24 ββ’β "Hello world!" <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.breakline () a = 12 b = 'Hello' c = false SD.nvtos (1,'a',a,'b',b,'c',c) a = a + a b = b..' world!' SD.nvtos ('Finally','a',a,'b',b) error (SD.s) </syntaxhighlight> displays: {{color|red|'''Lua error:Module:''YourModule'':''Line'':'''}} {{color|red|'''1 {{=}}> a: 12 ββ’β b: "Hello" ββ’β c: false'''}} {{color|red|'''Finally {{=}}> a: 24 ββ’β b: "Hello world!"'''}} ==== Variables and their presentation with conditions ==== <syntaxhighlight lang="Lua"> local SD = require "Module:SimpleDebug" SD.breakline() SD.enabled = false SD.maxlines.num = 3 local a = 'AA' for i = 1, 10 do a = a + 'AA' if i == 3 then SD.enabled = true end SD.nvtos (i, string.len(a), a) end </syntaxhighlight> displays: {{color|red|'''Lua error:Module:''YourModule'':''Line'':'''}} {{color|red|'''3 {{=}}> 8 ββ’β "AAAAAAAA"'''}} {{color|red|'''4 {{=}}> 10 ββ’β "AAAAAAAAAA"'''}} {{color|red|'''5 {{=}}> 12 ββ’β "AAAAAAAAAAAA".'''}} <includeonly> [[Category:Modules for test tools]] </includeonly>
Buod ng pagbabago:
(Maikling isalarawan ang pagbabagong ginawa mo.)
Sa pag-save sa mga pagbabago, sumasang-ayon ka sa
Kasunduan sa Paggamit
, at sumasang-ayon ka rin na ilalabas mo nang walang atrasan ang ambag mo sa ilalim ng
Lisensiyang CC BY-SA 4.0
at sa
GFDL
. Sumasang-ayon ka rin na sapat na ang isang hyperlink o URL bilang atribusyon sa ilalim ng lisensiyang Creative Commons.
Balewalain
Tulong sa pagbabago
(magbubukas ng panibagong bintana)
Preview page with this template
Mga padron na ginamit sa pahinang ito:
Padron:Color
(
baguhin
)
Hanapin
Hanapin
Binabago:
Module:SimpleDebug/doc
Magdagdag ng wika
Magdagdag ng paksa