Adding the JSON_DELETE constant.
This commit is contained in:
parent
65f9678930
commit
427ad53d23
3 changed files with 10 additions and 2 deletions
|
@ -4737,6 +4737,7 @@
|
|||
<WordsSubsection name="C.26 JSON constants">
|
||||
<Word name="JSON_APPEND" type="integer" value="-1"/>
|
||||
<Word name="JSON_ARRAY" type="string" value="">U+FDD2</Word>
|
||||
<Word name="JSON_DELETE" type="string" value="U+FFD8"></Word>
|
||||
<Word name="JSON_FALSE" type="string" value="">U+FDD7</Word>
|
||||
<Word name="JSON_INVALID" type="string" value="">U+FDD0</Word>
|
||||
<Word name="JSON_NULL" type="string" value="">U+FDD5</Word>
|
||||
|
|
|
@ -6,11 +6,17 @@
|
|||
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
|
||||
<div>
|
||||
<div>
|
||||
<h3><span class="date">2013-07-00</span> - Release 2.xx.x</h3>
|
||||
<h3><span class="date">2013-10-18</span> - Release 2.55.0</h3>
|
||||
<div>
|
||||
* Constants Added:
|
||||
<ul>
|
||||
<li>JSON_DELETE</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
* Fixes
|
||||
<ul>
|
||||
<li>Auto-complete should now be consistent for functions having no arguments. This was a configuration issue with older tool-tips entries.</li>
|
||||
<li>Auto-complete should now be consistent for functions having no arguments. This was a configuration issue with older tool-tip entries.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<h3><span class="date">2013-07-15</span> - Release 2.54.0</h3>
|
||||
|
|
|
@ -273,6 +273,7 @@ namespace LSLEditor
|
|||
|
||||
public const int JSON_APPEND = -1;
|
||||
public const string JSON_ARRAY = "\uFDD2";
|
||||
public const string JSON_DELETE = "\uFDD8";
|
||||
public const string JSON_FALSE = "\uFDD7";
|
||||
public const string JSON_INVALID = "\uFDD0";
|
||||
public const string JSON_NULL = "\uFDD5";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue