mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 18:32:11 +00:00
some code formating
This commit is contained in:
@@ -776,10 +776,10 @@ proc parseInline(p: var TRstParser, father: PRstNode) =
|
||||
of tkAdornment, tkOther, tkWhite:
|
||||
addSon(father, newLeaf(p))
|
||||
inc(p.idx)
|
||||
else: assert(false)
|
||||
else: nil
|
||||
|
||||
proc getDirective(p: var TRstParser): string =
|
||||
if (p.tok[p.idx].kind == tkWhite) and (p.tok[p.idx + 1].kind == tkWord):
|
||||
if p.tok[p.idx].kind == tkWhite and p.tok[p.idx+1].kind == tkWord:
|
||||
var j = p.idx
|
||||
inc(p.idx)
|
||||
result = p.tok[p.idx].symbol
|
||||
@@ -788,7 +788,7 @@ proc getDirective(p: var TRstParser): string =
|
||||
if p.tok[p.idx].symbol == "::": break
|
||||
add(result, p.tok[p.idx].symbol)
|
||||
inc(p.idx)
|
||||
if (p.tok[p.idx].kind == tkWhite): inc(p.idx)
|
||||
if p.tok[p.idx].kind == tkWhite: inc(p.idx)
|
||||
if p.tok[p.idx].symbol == "::":
|
||||
inc(p.idx)
|
||||
if (p.tok[p.idx].kind == tkWhite): inc(p.idx)
|
||||
@@ -814,8 +814,8 @@ proc parseComment(p: var TRstParser): PRstNode =
|
||||
else:
|
||||
nil
|
||||
inc(p.idx)
|
||||
else:
|
||||
while not (p.tok[p.idx].kind in {tkIndent, tkEof}): inc(p.idx)
|
||||
else:
|
||||
while p.tok[p.idx].kind notin {tkIndent, tkEof}: inc(p.idx)
|
||||
result = nil
|
||||
|
||||
type
|
||||
@@ -941,9 +941,9 @@ proc isLineBlock(p: TRstParser): bool =
|
||||
|
||||
proc predNL(p: TRstParser): bool =
|
||||
result = true
|
||||
if (p.idx > 0):
|
||||
result = (p.tok[p.idx - 1].kind == tkIndent) and
|
||||
(p.tok[p.idx - 1].ival == currInd(p))
|
||||
if p.idx > 0:
|
||||
result = p.tok[p.idx-1].kind == tkIndent and
|
||||
p.tok[p.idx-1].ival == currInd(p)
|
||||
|
||||
proc isDefList(p: TRstParser): bool =
|
||||
var j = tokenAfterNewline(p)
|
||||
|
||||
@@ -162,15 +162,14 @@ proc ExecAffectedRows*(db: TDbConn, query: TSqlQuery,
|
||||
|
||||
proc Close*(db: TDbConn) =
|
||||
## closes the database connection.
|
||||
if sqlite3.close(db) != SQLITE_OK:
|
||||
dbError(db)
|
||||
if sqlite3.close(db) != SQLITE_OK: dbError(db)
|
||||
|
||||
proc Open*(connection, user, password, database: string): TDbConn =
|
||||
## opens a database connection. Raises `EDb` if the connection could not
|
||||
## be established. Only the ``connection`` parameter is used for ``sqlite``.
|
||||
var db: TDbConn
|
||||
if sqlite3.open(connection, db) == SQLITE_OK:
|
||||
return db
|
||||
result = db
|
||||
else:
|
||||
dbError(db)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user