Microsoft.JScript.PackageScope.CreateField C# (CSharp) Method

CreateField() protected method

protected CreateField ( String name, FieldAttributes attributeFlags, Object value ) : JSVariableField
name String
attributeFlags FieldAttributes
value Object
return JSVariableField
      protected override JSVariableField CreateField(String name, FieldAttributes attributeFlags, Object value){
        return new JSGlobalField(this, name, value, attributeFlags);
      }