Details (mostly comments)

This commit is contained in:
Roberto Ierusalimschy
2019-10-22 14:08:22 -03:00
parent 6e1aec7a67
commit e592f94a64
4 changed files with 28 additions and 9 deletions

View File

@@ -155,6 +155,9 @@ static Node *mainposition (const Table *t, int ktt, const Value *kvl) {
}
/*
** Returns the main position of an element given as a 'TValue'
*/
static Node *mainpositionTV (const Table *t, const TValue *key) {
return mainposition(t, rawtt(key), valraw(key));
}