]>
git.saurik.com Git - apple/javascriptcore.git/blob - parser/Parser.h
6f4c2b7d4ee5b7969b75337c93b73eeb8b9e464e
2 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
3 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
4 * Copyright (C) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
28 #include "SourceProvider.h"
29 #include <wtf/Forward.h>
30 #include <wtf/Noncopyable.h>
31 #include <wtf/OwnPtr.h>
32 #include <wtf/RefPtr.h>
36 class FunctionBodyNode
;
40 template <typename T
> struct ParserArenaData
: ParserArenaDeletable
{ T data
; };
42 class Parser
: Noncopyable
{
44 template <class ParsedNode
> PassRefPtr
<ParsedNode
> parse(ExecState
*, Debugger
*, const SourceCode
&, int* errLine
= 0, UString
* errMsg
= 0);
45 template <class ParsedNode
> PassRefPtr
<ParsedNode
> reparse(JSGlobalData
*, ParsedNode
*);
46 void reparseInPlace(JSGlobalData
*, FunctionBodyNode
*);
48 void didFinishParsing(SourceElements
*, ParserArenaData
<DeclarationStacks::VarStack
>*,
49 ParserArenaData
<DeclarationStacks::FunctionStack
>*, CodeFeatures features
, int lastLine
, int numConstants
);
51 ParserArena
& arena() { return m_arena
; }
54 void parse(JSGlobalData
*, int* errLine
, UString
* errMsg
);
57 const SourceCode
* m_source
;
58 SourceElements
* m_sourceElements
;
59 ParserArenaData
<DeclarationStacks::VarStack
>* m_varDeclarations
;
60 ParserArenaData
<DeclarationStacks::FunctionStack
>* m_funcDeclarations
;
61 CodeFeatures m_features
;
66 template <class ParsedNode
> PassRefPtr
<ParsedNode
> Parser::parse(ExecState
* exec
, Debugger
* debugger
, const SourceCode
& source
, int* errLine
, UString
* errMsg
)
69 parse(&exec
->globalData(), errLine
, errMsg
);
70 RefPtr
<ParsedNode
> result
;
71 if (m_sourceElements
) {
72 result
= ParsedNode::create(&exec
->globalData(),
74 m_varDeclarations
? &m_varDeclarations
->data
: 0,
75 m_funcDeclarations
? &m_funcDeclarations
->data
: 0,
79 result
->setLoc(m_source
->firstLine(), m_lastLine
);
85 m_varDeclarations
= 0;
86 m_funcDeclarations
= 0;
89 debugger
->sourceParsed(exec
, source
, *errLine
, *errMsg
);
90 return result
.release();
93 template <class ParsedNode
> PassRefPtr
<ParsedNode
> Parser::reparse(JSGlobalData
* globalData
, ParsedNode
* oldParsedNode
)
95 m_source
= &oldParsedNode
->source();
96 parse(globalData
, 0, 0);
97 RefPtr
<ParsedNode
> result
;
98 if (m_sourceElements
) {
99 result
= ParsedNode::create(globalData
,
101 m_varDeclarations
? &m_varDeclarations
->data
: 0,
102 m_funcDeclarations
? &m_funcDeclarations
->data
: 0,
104 oldParsedNode
->features(),
106 result
->setLoc(m_source
->firstLine(), m_lastLine
);
112 m_varDeclarations
= 0;
113 m_funcDeclarations
= 0;
115 return result
.release();