]>
Commit | Line | Data |
---|---|---|
b37bf2e1 | 1 | /* |
b37bf2e1 A |
2 | * Copyright (C) 1999-2001 Harri Porten (porten@kde.org) |
3 | * Copyright (C) 2001 Peter Kelly (pmk@post.com) | |
9dae56ea | 4 | * Copyright (C) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
b37bf2e1 A |
5 | * |
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. | |
10 | * | |
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. | |
15 | * | |
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. | |
20 | * | |
21 | */ | |
22 | ||
23 | #ifndef Parser_h | |
24 | #define Parser_h | |
25 | ||
9dae56ea | 26 | #include "Debugger.h" |
f9bf01c6 A |
27 | #include "Executable.h" |
28 | #include "JSGlobalObject.h" | |
29 | #include "Lexer.h" | |
9dae56ea | 30 | #include "Nodes.h" |
f9bf01c6 | 31 | #include "ParserArena.h" |
ba379fdc | 32 | #include "SourceProvider.h" |
b37bf2e1 A |
33 | #include <wtf/Forward.h> |
34 | #include <wtf/Noncopyable.h> | |
35 | #include <wtf/OwnPtr.h> | |
36 | #include <wtf/RefPtr.h> | |
b37bf2e1 | 37 | |
9dae56ea | 38 | namespace JSC { |
b37bf2e1 A |
39 | |
40 | class FunctionBodyNode; | |
41 | class ProgramNode; | |
42 | class UString; | |
43 | ||
ba379fdc | 44 | template <typename T> struct ParserArenaData : ParserArenaDeletable { T data; }; |
b37bf2e1 | 45 | |
f9bf01c6 | 46 | class Parser : public Noncopyable { |
b37bf2e1 | 47 | public: |
f9bf01c6 A |
48 | template <class ParsedNode> |
49 | PassRefPtr<ParsedNode> parse(JSGlobalData* globalData, Debugger*, ExecState*, const SourceCode& source, int* errLine = 0, UString* errMsg = 0); | |
b37bf2e1 | 50 | |
ba379fdc A |
51 | void didFinishParsing(SourceElements*, ParserArenaData<DeclarationStacks::VarStack>*, |
52 | ParserArenaData<DeclarationStacks::FunctionStack>*, CodeFeatures features, int lastLine, int numConstants); | |
53 | ||
54 | ParserArena& arena() { return m_arena; } | |
b5422865 | 55 | |
b37bf2e1 | 56 | private: |
9dae56ea | 57 | void parse(JSGlobalData*, int* errLine, UString* errMsg); |
b37bf2e1 | 58 | |
ba379fdc | 59 | ParserArena m_arena; |
b5422865 | 60 | const SourceCode* m_source; |
ba379fdc A |
61 | SourceElements* m_sourceElements; |
62 | ParserArenaData<DeclarationStacks::VarStack>* m_varDeclarations; | |
63 | ParserArenaData<DeclarationStacks::FunctionStack>* m_funcDeclarations; | |
9dae56ea | 64 | CodeFeatures m_features; |
b37bf2e1 | 65 | int m_lastLine; |
9dae56ea | 66 | int m_numConstants; |
b37bf2e1 | 67 | }; |
b37bf2e1 | 68 | |
f9bf01c6 A |
69 | template <class ParsedNode> |
70 | PassRefPtr<ParsedNode> Parser::parse(JSGlobalData* globalData, Debugger* debugger, ExecState* debuggerExecState, const SourceCode& source, int* errLine, UString* errMsg) | |
b37bf2e1 | 71 | { |
b5422865 | 72 | m_source = &source; |
f9bf01c6 A |
73 | if (ParsedNode::scopeIsFunction) |
74 | globalData->lexer->setIsReparsing(); | |
75 | parse(globalData, errLine, errMsg); | |
9dae56ea | 76 | |
b5422865 A |
77 | RefPtr<ParsedNode> result; |
78 | if (m_sourceElements) { | |
9dae56ea | 79 | result = ParsedNode::create(globalData, |
f9bf01c6 A |
80 | m_sourceElements, |
81 | m_varDeclarations ? &m_varDeclarations->data : 0, | |
82 | m_funcDeclarations ? &m_funcDeclarations->data : 0, | |
83 | source, | |
84 | m_features, | |
85 | m_numConstants); | |
b5422865 | 86 | result->setLoc(m_source->firstLine(), m_lastLine); |
b37bf2e1 | 87 | } |
b5422865 | 88 | |
ba379fdc A |
89 | m_arena.reset(); |
90 | ||
b5422865 | 91 | m_source = 0; |
f9bf01c6 | 92 | m_sourceElements = 0; |
b37bf2e1 A |
93 | m_varDeclarations = 0; |
94 | m_funcDeclarations = 0; | |
9dae56ea | 95 | |
f9bf01c6 A |
96 | if (debugger && !ParsedNode::scopeIsFunction) |
97 | debugger->sourceParsed(debuggerExecState, source, *errLine, *errMsg); | |
b5422865 | 98 | return result.release(); |
b37bf2e1 A |
99 | } |
100 | ||
9dae56ea | 101 | } // namespace JSC |
b37bf2e1 A |
102 | |
103 | #endif // Parser_h |