You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
expect(tokens[8]).toEqualvalue:'this is the description ', scopes: ['source.js', 'comment.block.documentation.js', 'other.meta.jsdoc', 'other.description.jsdoc']
1531
1531
1532
+
{tokens} =grammar.tokenizeLine('/** @param {*} variable this is the description */')
expect(tokens[8]).toEqualvalue:'this is the description ', scopes: ['source.js', 'comment.block.documentation.js', 'other.meta.jsdoc', 'other.description.jsdoc']
1536
+
1537
+
{tokens} =grammar.tokenizeLine('/** @param {myNamespace.MyClass} variable this is the description */')
expect(tokens[8]).toEqualvalue:'this is the description ', scopes: ['source.js', 'comment.block.documentation.js', 'other.meta.jsdoc', 'other.description.jsdoc']
1541
+
1542
+
{tokens} =grammar.tokenizeLine('/** @param {?number} variable this is the description */')
expect(tokens[8]).toEqualvalue:'this is the description ', scopes: ['source.js', 'comment.block.documentation.js', 'other.meta.jsdoc', 'other.description.jsdoc']
1546
+
1547
+
{tokens} =grammar.tokenizeLine('/** @param {!number} variable this is the description */')
expect(tokens[8]).toEqualvalue:'this is the description ', scopes: ['source.js', 'comment.block.documentation.js', 'other.meta.jsdoc', 'other.description.jsdoc']
1551
+
1552
+
{tokens} =grammar.tokenizeLine('/** @param {...number} variable this is the description */')
expect(tokens[8]).toEqualvalue:'this is the description ', scopes: ['source.js', 'comment.block.documentation.js', 'other.meta.jsdoc', 'other.description.jsdoc']
0 commit comments