compiler: --erasure use `virtual_runtime_function` instead of hard-building names
[nit.git] / lib / sqlite3 / sqlite3.nit
index 05c5a06..23b1ef7 100644 (file)
@@ -132,6 +132,7 @@ class Statement
        end
 end
 
+# A row from a `Statement`
 class StatementRow
        # Statement linked to `self`
        var statement: Statement
@@ -298,6 +299,9 @@ end
 class Blob
        super Sqlite3Data
 
+       # Pointer to the beginning of the blob
        var pointer: Pointer
+
+       # Size of the blob
        var length: Int
 end