diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-03-14 15:30:54 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-03-14 15:30:54 -0300 |
commit | b56d4e570a60a8e84df8288c3122eb5bb5c20af6 (patch) | |
tree | d5597a7865712fc407adbb41fe0749e728617ca7 /testes/api.lua | |
parent | 9eca305e75010e30342486a4139846faf1b3eccb (diff) | |
download | lua-b56d4e570a60a8e84df8288c3122eb5bb5c20af6.tar.gz lua-b56d4e570a60a8e84df8288c3122eb5bb5c20af6.tar.bz2 lua-b56d4e570a60a8e84df8288c3122eb5bb5c20af6.zip |
Changes in the warning system
- The warning functions get an extra parameter that tells whether
message is to be continued (instead of using end-of-lines as a signal).
- The user data for the warning function is a regular value, instead
of a writable slot inside the Lua state.
Diffstat (limited to 'testes/api.lua')
-rw-r--r-- | testes/api.lua | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/testes/api.lua b/testes/api.lua index d034ea80..08672e8a 100644 --- a/testes/api.lua +++ b/testes/api.lua | |||
@@ -114,13 +114,11 @@ end | |||
114 | 114 | ||
115 | -- testing warnings | 115 | -- testing warnings |
116 | T.testC([[ | 116 | T.testC([[ |
117 | warning "#This shold be a" | 117 | warningC "#This shold be a" |
118 | warning " single " | 118 | warningC " single " |
119 | warning "warning | 119 | warning "warning" |
120 | " | 120 | warningC "#This should be " |
121 | warning "#This should be " | 121 | warning "another one" |
122 | warning "another one | ||
123 | " | ||
124 | ]]) | 122 | ]]) |
125 | 123 | ||
126 | 124 | ||