• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2017 The PDFium Authors
2 // 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 
CJX_Extras(CXFA_Extras * node)11 CJX_Extras::CJX_Extras(CXFA_Extras* node) : CJX_Node(node) {}
12 
13 CJX_Extras::~CJX_Extras() = default;
14 
DynamicTypeIs(TypeTag eType) const15 bool CJX_Extras::DynamicTypeIs(TypeTag eType) const {
16   return eType == static_type__ || ParentType__::DynamicTypeIs(eType);
17 }
18 
type(v8::Isolate * pIsolate,v8::Local<v8::Value> * pValue,bool bSetting,XFA_Attribute eAttribute)19 void CJX_Extras::type(v8::Isolate* pIsolate,
20                       v8::Local<v8::Value>* pValue,
21                       bool bSetting,
22                       XFA_Attribute eAttribute) {}
23