Make new JsonStore script constants separated with underscores, to be consistent with existing LSL/OSSL, etc script constants.
Agreed with cmickeyb0.7.4-extended
parent
37ab587f27
commit
1df97c2385
|
@ -214,19 +214,19 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ScriptConstantInteface
|
#region ScriptConstantsInterface
|
||||||
|
|
||||||
[ScriptConstant]
|
[ScriptConstant]
|
||||||
public static readonly int JSONTYPEUNDEF = (int)JsonStoreNodeType.Undefined;
|
public static readonly int JSON_TYPE_UNDEF = (int)JsonStoreNodeType.Undefined;
|
||||||
|
|
||||||
[ScriptConstant]
|
[ScriptConstant]
|
||||||
public static readonly int JSONTYPEOBJECT = (int)JsonStoreNodeType.Object;
|
public static readonly int JSON_TYPE_OBJECT = (int)JsonStoreNodeType.Object;
|
||||||
|
|
||||||
[ScriptConstant]
|
[ScriptConstant]
|
||||||
public static readonly int JSONTYPEARRAY = (int)JsonStoreNodeType.Array;
|
public static readonly int JSON_TYPE_ARRAY = (int)JsonStoreNodeType.Array;
|
||||||
|
|
||||||
[ScriptConstant]
|
[ScriptConstant]
|
||||||
public static readonly int JSONTYPEVALUE = (int)JsonStoreNodeType.Value;
|
public static readonly int JSON_TYPE_VALUE = (int)JsonStoreNodeType.Value;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue