plugins: plugin loader redesign
[geany-mirror.git] / tests / ctags / 1850914.js
blob8dc76a9c23b411b5e17ab26f6ddb04ec71a6fcb4
1 // This file should generate the following tags:\r
2 //\r
3 //   classes\r
4 //     objectLiteral\r
5 //   methods\r
6 //     objectLiteral.objLiteralMethod\r
7 //   properties\r
8 //     objectLiteral.objLiteralProperty\r
9 \r
11 /**\r
12 * This is an object literal\r
13 */\r
14 var objectLiteral = {\r
15 /**\r
16 * This is a literal object property\r
17 */\r
18 objLiteralProperty : 1,\r
19 /**\r
20 * This is a literal object method\r
21 */\r
22 objLiteralMethod : function(){}\r
23 }\r