Bug 1137523 part 2 - Unprefix a few js_* functions I forgot in part 1. r=bhackett

This commit is contained in:
Jan de Mooij
2015-03-03 09:33:22 +01:00
parent aa40e56f26
commit a3c48deed7
20 changed files with 128 additions and 84 deletions

View File

@@ -452,7 +452,7 @@ class SrcNoteLineScanner
*/
bool lineHeader;
public:
public:
SrcNoteLineScanner(jssrcnote *sn, uint32_t lineno)
: offset(0), sn(sn), lineno(lineno)
{
@@ -491,7 +491,7 @@ public:
SrcNoteType type = (SrcNoteType) SN_TYPE(sn);
if (type == SRC_SETLINE || type == SRC_NEWLINE) {
if (type == SRC_SETLINE)
lineno = js_GetSrcNoteOffset(sn, 0);
lineno = GetSrcNoteOffset(sn, 0);
else
lineno++;