diff options
author | dan sinclair <dsinclair@chromium.org> | 2018-02-19 18:10:34 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-19 18:10:34 +0000 |
commit | 6a5b1c96e23bd684d9fec2c59e0d4bc5d883650c (patch) | |
tree | b6ba4042b3e6ad51d240b69e3cec78891e3b583c /fxjs | |
parent | c8785f736df57d7d20649d803818a30eb55b2ee8 (diff) | |
download | pdfium-6a5b1c96e23bd684d9fec2c59e0d4bc5d883650c.tar.xz |
Merge FormCalc to JavaScript methods
This CL merges the ToJavaScript and the ToImpliedJS methods in the
FormCalc expressions. The type of return is passed as a paramter to
ToJavaScript.
Change-Id: Idff83677bc70b964d95aa6ff6b0e2c1bf8c603ea
Reviewed-on: https://pdfium-review.googlesource.com/27210
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/cfxjse_formcalc_context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cfxjse_formcalc_context.cpp b/fxjs/cfxjse_formcalc_context.cpp index 787e60a91f..82884265cf 100644 --- a/fxjs/cfxjse_formcalc_context.cpp +++ b/fxjs/cfxjse_formcalc_context.cpp @@ -6180,7 +6180,7 @@ bool CFXJSE_FormCalcContext::Translate(const WideStringView& wsFormcalc, return false; CXFA_FMToJavaScriptDepth::Reset(); - if (!func->ToJavaScript(*wsJavascript)) + if (!func->ToJavaScript(*wsJavascript, ReturnType::kInfered)) return false; wsJavascript->AppendChar(0); |