Browse Source

pas2js: docs: record const

git-svn-id: trunk@38870 -
Mattias Gaertner 7 years ago
parent
commit
994167481d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/pas2js/docs/translation.html

+ 2 - 2
utils/pas2js/docs/translation.html

@@ -663,8 +663,8 @@ function(){
     <ul>
       <li>The record variable creates a JavaScript object.</li>
       <li>Variant records are not supported.</li>
-      <li>Supported: Assign, pass as argument, equal, not equal, array of record, pointer of record.</li>
-      <li>Not yet implemented: Constants, advanced records, operators.</li>
+      <li>Supported: Assign, pass as argument, equal, not equal, array of record, pointer of record, const.</li>
+      <li>Not yet implemented: advanced records, operators.</li>
       <li>When assigning a record it is cloned. This is compatible with Delphi and FPC.</li>
       <li>Since record types are JS objects it is possible to typecast a record type
       to the JS Object, e.g. TJSObject(TPoint)</li>