compiler_ropes: don't expose newRope

This commit is contained in:
Jacek Sieka
2015-03-29 12:10:46 +08:00
parent 97d2df9bac
commit b4e4ea8d1b
3 changed files with 5 additions and 5 deletions

View File

@@ -77,13 +77,13 @@ proc mangleName(s: PSym): PRope =
# These are not properly scoped now - we need to add blocks
# around for loops in transf
if keepOrigName:
result = s.name.s.mangle.newRope
result = s.name.s.mangle.toRope
else:
app(result, newRope(mangle(s.name.s)))
app(result, toRope(mangle(s.name.s)))
app(result, ~"_")
app(result, toRope(s.id))
else:
app(result, newRope(mangle(s.name.s)))
app(result, toRope(mangle(s.name.s)))
app(result, ~"_")
app(result, toRope(s.id))
s.loc.r = result

View File

@@ -635,7 +635,7 @@ proc commandJSON*() =
var d = newDocumentor(gProjectFull, options.gConfigVars)
d.hasToc = true
var json = generateJson(d, ast)
var content = newRope(pretty(json))
var content = toRope(pretty(json))
if optStdout in gGlobalOptions:
writeRope(stdout, content)

View File

@@ -103,7 +103,7 @@ proc len*(a: PRope): int =
if a == nil: result = 0
else: result = a.length
proc newRope*(data: string = nil): PRope =
proc newRope(data: string = nil): PRope =
new(result)
if data != nil:
result.length = len(data)