9
9
]]
10
10
11
11
local php = mw_interface
12
- local entity = {}
12
+ local Entity = {}
13
13
local metatable = {}
14
14
local methodtable = {}
15
15
local util = require ' libraryUtil'
@@ -19,7 +19,7 @@ local checkTypeMulti = util.checkTypeMulti
19
19
metatable .__index = methodtable
20
20
21
21
-- Claim ranks (Claim::RANK_* in PHP)
22
- entity .claimRanks = {
22
+ Entity .claimRanks = {
23
23
RANK_TRUTH = 3 ,
24
24
RANK_PREFERRED = 2 ,
25
25
RANK_NORMAL = 1 ,
@@ -46,7 +46,7 @@ local maskClaimsTable = function( entity )
46
46
entity .claims = {}
47
47
48
48
local pseudoClaimsMetatable = {}
49
- pseudoClaimsMetatable .__index = function ( emptyTable , propertyId )
49
+ pseudoClaimsMetatable .__index = function ( _ , propertyId )
50
50
if isValidPropertyId ( propertyId ) then
51
51
-- Only attempt to track the usage if we have a valid property id.
52
52
php .addStatementUsage ( entity .id , propertyId )
@@ -55,18 +55,18 @@ local maskClaimsTable = function( entity )
55
55
return actualEntityClaims [propertyId ]
56
56
end
57
57
58
- pseudoClaimsMetatable .__newindex = function ( emptyTable , propertyId , data )
58
+ pseudoClaimsMetatable .__newindex = function ( _ , _ , _ )
59
59
error ( ' Entity cannot be modified' )
60
60
end
61
61
62
- local logNext = function ( emptyTable , propertyId )
62
+ local logNext = function ( _ , propertyId )
63
63
if isValidPropertyId ( propertyId ) then
64
64
php .addStatementUsage ( entity .id , propertyId )
65
65
end
66
66
return next ( actualEntityClaims , propertyId )
67
67
end
68
68
69
- pseudoClaimsMetatable .__pairs = function ( emptyTable )
69
+ pseudoClaimsMetatable .__pairs = function ( _ )
70
70
return logNext , {}, nil
71
71
end
72
72
77
77
-- Create new entity object from given data
78
78
--
79
79
-- @param {table} data
80
- entity .create = function ( data )
80
+ Entity .create = function ( data )
81
81
if type ( data ) ~= ' table' then
82
82
error ( ' Expected a table obtained via mw.wikibase.getEntityObject, got ' .. type ( data ) .. ' instead' )
83
83
end
@@ -211,7 +211,7 @@ methodtable.getBestStatements = function( entity, propertyId )
211
211
local statements = {}
212
212
local bestRank = ' normal'
213
213
214
- for k , statement in pairs ( entity .claims [propertyId ] ) do
214
+ for _ , statement in pairs ( entity .claims [propertyId ] ) do
215
215
if statement .rank == bestRank then
216
216
statements [# statements + 1 ] = statement
217
217
elseif statement .rank == ' preferred' then
@@ -233,7 +233,7 @@ methodtable.getProperties = function( entity )
233
233
local properties = {}
234
234
235
235
local n = 0
236
- for k , v in pairs ( entity .claims ) do
236
+ for k , _ in pairs ( entity .claims ) do
237
237
n = n + 1
238
238
properties [n ] = k
239
239
end
@@ -306,8 +306,8 @@ methodtable.formatStatements = function( entity, propertyLabelOrId, acceptableRa
306
306
);
307
307
end
308
308
309
- mw .wikibase .entity = entity
310
- package.loaded [' mw.wikibase.entity' ] = entity
309
+ mw .wikibase .entity = Entity
310
+ package.loaded [' mw.wikibase.entity' ] = Entity
311
311
mw_interface = nil
312
312
313
- return entity
313
+ return Entity
0 commit comments