| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef _XFA_FM_PARSE_H | 7 #ifndef _XFA_FM_PARSE_H |
| 8 #define _XFA_FM_PARSE_H | 8 #define _XFA_FM_PARSE_H |
| 9 |
| 10 #include <memory> |
| 11 |
| 12 #include "xfa/src/fxfa/src/fm2js/xfa_lexer.h" |
| 13 |
| 9 class CXFA_FMParse { | 14 class CXFA_FMParse { |
| 10 public: | 15 public: |
| 11 CXFA_FMParse(); | 16 CXFA_FMParse(); |
| 12 ~CXFA_FMParse(); | |
| 13 int32_t Init(const CFX_WideStringC& wsFormcalc, CXFA_FMErrorInfo* pErrorInfo); | 17 int32_t Init(const CFX_WideStringC& wsFormcalc, CXFA_FMErrorInfo* pErrorInfo); |
| 14 void NextToken(); | 18 void NextToken(); |
| 15 void Check(XFA_FM_TOKEN op); | 19 void Check(XFA_FM_TOKEN op); |
| 16 void Error(FX_DWORD lineNum, XFA_FM_ERRMSG msg, ...); | 20 void Error(FX_DWORD lineNum, XFA_FM_ERRMSG msg, ...); |
| 17 CFX_PtrArray* ParseTopExpression(); | 21 CFX_PtrArray* ParseTopExpression(); |
| 18 CXFA_FMExpression* ParseFunction(); | 22 CXFA_FMExpression* ParseFunction(); |
| 19 CXFA_FMExpression* ParseExpression(); | 23 CXFA_FMExpression* ParseExpression(); |
| 20 CXFA_FMExpression* ParseVarExpression(); | 24 CXFA_FMExpression* ParseVarExpression(); |
| 21 CXFA_FMExpression* ParseExpExpression(); | 25 CXFA_FMExpression* ParseExpExpression(); |
| 22 CXFA_FMExpression* ParseBlockExpression(); | 26 CXFA_FMExpression* ParseBlockExpression(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 33 CXFA_FMSimpleExpression* ParseEqualityExpression(); | 37 CXFA_FMSimpleExpression* ParseEqualityExpression(); |
| 34 CXFA_FMSimpleExpression* ParseRelationalExpression(); | 38 CXFA_FMSimpleExpression* ParseRelationalExpression(); |
| 35 CXFA_FMSimpleExpression* ParseAddtiveExpression(); | 39 CXFA_FMSimpleExpression* ParseAddtiveExpression(); |
| 36 CXFA_FMSimpleExpression* ParseMultiplicativeExpression(); | 40 CXFA_FMSimpleExpression* ParseMultiplicativeExpression(); |
| 37 CXFA_FMSimpleExpression* ParseUnaryExpression(); | 41 CXFA_FMSimpleExpression* ParseUnaryExpression(); |
| 38 CXFA_FMSimpleExpression* ParsePrimaryExpression(); | 42 CXFA_FMSimpleExpression* ParsePrimaryExpression(); |
| 39 CXFA_FMSimpleExpression* ParsePostExpression(CXFA_FMSimpleExpression* e); | 43 CXFA_FMSimpleExpression* ParsePostExpression(CXFA_FMSimpleExpression* e); |
| 40 CXFA_FMSimpleExpression* ParseIndexExpression(); | 44 CXFA_FMSimpleExpression* ParseIndexExpression(); |
| 41 | 45 |
| 42 private: | 46 private: |
| 43 const FX_WCHAR* m_pScript; | 47 std::unique_ptr<CXFA_FMLexer> m_lexer; |
| 44 FX_STRSIZE m_uLength; | |
| 45 CXFA_FMLexer* m_lexer; | |
| 46 CXFA_FMToken* m_pToken; | 48 CXFA_FMToken* m_pToken; |
| 47 CXFA_FMErrorInfo* m_pErrorInfo; | 49 CXFA_FMErrorInfo* m_pErrorInfo; |
| 48 }; | 50 }; |
| 51 |
| 49 #endif | 52 #endif |
| OLD | NEW |