Ox.identify: update examples

This commit is contained in:
rolux 2012-06-14 16:44:50 +02:00
parent b7129af1b4
commit cbe8f1db49

View file

@ -475,14 +475,20 @@ Ox.doc = (function() {
/*@
Ox.identify <f> Returns the type of a JavaScript identifier
(string) -> <s> Type
Type can be `constant`, `identifier`, `keyword`, `method`, `object` or
`property`.
Type can be `'constant'`, `'identifier'`, `'keyword'`, `'method'`,
`'object'` or `'property'`.
> Ox.idenfify('PI')
'constant'
> Ox.identify('foo')
'identifier'
> Ox.identify('break')
> Ox.identify('for')
'keyword'
> Ox.identify('forEach')
'method'
> Ox.identify('window')
'object'
> Ox.identify('prototype')
'property'
@*/
Ox.identify = (function() {
// see https://developer.mozilla.org/en/JavaScript/Reference