summaryrefslogtreecommitdiff
path: root/xfa/fxfa/fm2js/cxfa_fmprogram.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-05-17 09:39:04 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-05-17 16:21:44 +0000
commitc559156da52805513e11b1b2a057001b6fa63f90 (patch)
treeb8dc7114f1c630cbd9a17ce0ac5400e9f2fad77f /xfa/fxfa/fm2js/cxfa_fmprogram.h
parent938f211b94abc259c1363e632f6e8c5cb5ec5b1b (diff)
downloadpdfium-c559156da52805513e11b1b2a057001b6fa63f90.tar.xz
Adding CXFA_Parse unittests
This CL adds the beginning of unittests for the CXFA_Parse code. Change-Id: I06e556f1a35405bc683c536d390071917ee330a6 Reviewed-on: https://pdfium-review.googlesource.com/5556 Reviewed-by: Nicolás Peña <npm@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/fm2js/cxfa_fmprogram.h')
-rw-r--r--xfa/fxfa/fm2js/cxfa_fmprogram.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/xfa/fxfa/fm2js/cxfa_fmprogram.h b/xfa/fxfa/fm2js/cxfa_fmprogram.h
deleted file mode 100644
index e2a8a984f2..0000000000
--- a/xfa/fxfa/fm2js/cxfa_fmprogram.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2014 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#ifndef XFA_FXFA_FM2JS_CXFA_FMPROGRAM_H_
-#define XFA_FXFA_FM2JS_CXFA_FMPROGRAM_H_
-
-#include <memory>
-
-#include "xfa/fxfa/fm2js/cxfa_fmerrorinfo.h"
-#include "xfa/fxfa/fm2js/cxfa_fmparse.h"
-
-class CXFA_FMProgram {
- public:
- explicit CXFA_FMProgram(const CFX_WideStringC& wsFormcalc);
- ~CXFA_FMProgram();
-
- bool ParseProgram();
- bool TranslateProgram(CFX_WideTextBuf& wsJavaScript);
-
- private:
- CXFA_FMErrorInfo m_pErrorInfo;
- CXFA_FMParse m_parse;
- std::unique_ptr<CXFA_FMFunctionDefinition> m_globalFunction;
-};
-
-#endif // XFA_FXFA_FM2JS_CXFA_FMPROGRAM_H_