@qooxdoo/framework 6.0.3 → 6.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Manifest.json CHANGED
@@ -58,7 +58,7 @@
58
58
  "email": "martin DOT wittemann AT 1und1 DOT de"
59
59
  }
60
60
  ],
61
- "version": "6.0.3",
61
+ "version": "6.0.4",
62
62
  "qooxdoo-versions": [
63
63
  "6.0.2"
64
64
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qooxdoo/framework",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "The JS Framework for Coders",
5
5
  "author": "The qooxdoo project",
6
6
  "license": "MIT",
@@ -157,6 +157,12 @@ qx.Class.define("qx.test.type.BaseString",
157
157
 
158
158
  var s = new qx.String("Juhu");
159
159
  this.assertEquals("<b>Juhu</b>", s.bold());
160
+ },
161
+
162
+ testCodePointAt : function()
163
+ {
164
+ var s = new qx.type.BaseString("*");
165
+ this.assertEquals(42, s.codePointAt(0));
160
166
  }
161
167
  }
162
168
  });
@@ -387,7 +387,8 @@ qx.Class.define("qx.type.BaseString",
387
387
  'toUpperCase',
388
388
  'toLocaleLowerCase',
389
389
  'toLocaleUpperCase',
390
- 'trim'
390
+ 'trim',
391
+ 'codePointAt'
391
392
  ];
392
393
 
393
394
  // feature/bug detection:
@@ -402,4 +403,4 @@ qx.Class.define("qx.type.BaseString",
402
403
  }
403
404
  }
404
405
 
405
- });
406
+ });