blob: 74cdbba9a25b1e0a75687689bb643dcc792d7a95 [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2017 The PDFium Authors
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#include "fxjs/xfa/cjx_extras.h"
8
9#include "xfa/fxfa/parser/cxfa_extras.h"
10
11CJX_Extras::CJX_Extras(CXFA_Extras* node) : CJX_Node(node) {}
12
13CJX_Extras::~CJX_Extras() = default;
14
Haibo Huang49cc9302020-04-27 16:14:24 -070015bool CJX_Extras::DynamicTypeIs(TypeTag eType) const {
16 return eType == static_type__ || ParentType__::DynamicTypeIs(eType);
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070017}
18
kumarashishg826308d2023-06-23 13:21:22 +000019void CJX_Extras::type(v8::Isolate* pIsolate,
20 v8::Local<v8::Value>* pValue,
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070021 bool bSetting,
22 XFA_Attribute eAttribute) {}