blob: c95b1884647fdd34396374420bd2460afe5e5b71 [file] [log] [blame]
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001/* start of AUTO matically checked vim: set ts=4 : */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002{
3 if (test)
4 cmd1;
5 cmd2;
6}
7
8{
9 if (test)
10 cmd1;
11 else
12 cmd2;
13}
14
15{
16 if (test)
17 {
18 cmd1;
19 cmd2;
20 }
21}
22
23{
24 if (test)
25 {
26 cmd1;
27 else
28 }
29}
30
31{
32 while (this)
33 if (test)
34 cmd1;
35 cmd2;
36}
37
38{
39 while (this)
40 if (test)
41 cmd1;
42 else
43 cmd2;
44}
45
46{
47 if (test)
48 {
49 cmd;
50 }
51
52 if (test)
53 cmd;
54}
55
56{
57 if (test) {
58 cmd;
59 }
60
61 if (test) cmd;
62}
63
64{
65 cmd1;
66 for (blah)
67 while (this)
68 if (test)
69 cmd2;
70 cmd3;
71}
72
73{
74 cmd1;
75 for (blah)
76 while (this)
77 if (test)
78 cmd2;
79 cmd3;
80
81 if (test)
82 {
83 cmd1;
84 cmd2;
85 cmd3;
86 }
87}
88
89
90/* Test for 'cindent' do/while mixed with if/else: */
91
92{
93 do
94 if (asdf)
95 asdfasd;
96 while (cond);
97
98 do
99 if (asdf)
100 while (asdf)
101 asdf;
102 while (asdf);
103}
104
105/* Test for 'cindent' with two ) on a continuation line */
106{
107 if (asdfasdf;asldkfj asdlkfj as;ldkfj sal;d
108 aal;sdkjf ( ;asldfkja;sldfk
109 al;sdjfka ;slkdf ) sa;ldkjfsa dlk;)
110 line up here;
111}
112
113
114/* C++ tests: */
115
116// foo() these three lines should remain in column 0
117// {
118// }
119
120/* Test for continuation and unterminated lines: */
121{
122 i = 99 + 14325 +
123 21345 +
124 21345 +
125 21345 + ( 21345 +
126 21345) +
127 2345 +
128 1234;
129 c = 1;
130}
131
132/*
133 testje for indent with empty line
134
135 here */
136
137{
138 if (testing &&
139 not a joke ||
140 line up here)
141 hay;
142 if (testing &&
143 (not a joke || testing
144 )line up here)
145 hay;
146 if (testing &&
147 (not a joke || testing
148 line up here))
149 hay;
150}
151
152
153{
154 switch (c)
155 {
156 case xx:
157 do
158 if (asdf)
159 do
160 asdfasdf;
161 while (asdf);
162 else
163 asdfasdf;
164 while (cond);
165 case yy:
166 case xx:
167 case zz:
168 testing;
169 }
170}
171
172{
173 if (cond) {
174 foo;
175 }
176 else
177 {
178 bar;
179 }
180}
181
182{
183 if (alskdfj ;alsdkfjal;skdjf (;sadlkfsa ;dlkf j;alksdfj ;alskdjf
184 alsdkfj (asldk;fj
185 awith cino=(0 ;lf this one goes to below the paren with ==
186 ;laksjfd ;lsakdjf ;alskdf asd)
187 asdfasdf;)))
188 asdfasdf;
189}
190
191 int
192func(a, b)
193 int a;
194 int c;
195{
196 if (c1 && (c2 ||
197 c3))
198 foo;
199 if (c1 &&
200 (c2 || c3)
201 )
202}
203
204{
205 while (asd)
206 {
207 if (asdf)
208 if (test)
209 if (that)
210 {
211 if (asdf)
212 do
213 cdasd;
214 while (as
215 df);
216 }
217 else
218 if (asdf)
219 asdf;
220 else
221 asdf;
222 asdf;
223 }
224}
225
226{
227 s = "/*"; b = ';'
228 s = "/*"; b = ';';
229 a = b;
230}
231
232{
233 switch (a)
234 {
235 case a:
236 switch (t)
237 {
238 case 1:
239 cmd;
240 break;
241 case 2:
242 cmd;
243 break;
244 }
245 cmd;
246 break;
247 case b:
248 {
249 int i;
250 cmd;
251 }
252 break;
253 case c: {
254 int i;
255 cmd;
256 }
257 case d: if (cond &&
258 test) { /* this line doesn't work right */
259 int i;
260 cmd;
261 }
262 break;
263 }
264}
265
266{
267 if (!(vim_strchr(p_cpo, CPO_BUFOPTGLOB) != NULL && entering) &&
268 (bp_to->b_p_initialized ||
269 (!entering && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
270 return;
271label :
272 asdf = asdf ?
273 asdf : asdf;
274 asdf = asdf ?
275 asdf: asdf;
276}
277
278/* Special Comments : This function has the added complexity (compared */
279/* : to addtolist) of having to check for a detail */
280/* : texture and add that to the list first. */
281
282char *(array[100]) = {
283 "testje",
284 "foo",
285 "bar",
286}
287
288enum soppie
289{
290 yes = 0,
291 no,
292 maybe
293};
294
295typedef enum soppie
296{
297 yes = 0,
298 no,
299 maybe
300};
301
302{
303 int a,
304 b;
305}
306
307{
308 struct Type
309 {
310 int i;
311 char *str;
312 } var[] =
313 {
314 0, "zero",
315 1, "one",
316 2, "two",
317 3, "three"
318 };
319
320 float matrix[3][3] =
321 {
322 {
323 0,
324 1,
325 2
326 },
327 {
328 3,
329 4,
330 5
331 },
332 {
333 6,
334 7,
335 8
336 }
337 };
338}
339
340{
341 /* blah ( blah */
342 /* where does this go? */
343
344 /* blah ( blah */
345 cmd;
346
347 func(arg1,
348 /* comment */
349 arg2);
350 a;
351 {
352 b;
353 {
354 c; /* Hey, NOW it indents?! */
355 }
356 }
357
358 {
359 func(arg1,
360 arg2,
361 arg3);
362 /* Hey, what am I doing here? Is this coz of the ","? */
363 }
364}
365
366main ()
367{
368 if (cond)
369 {
370 a = b;
371 }
372 if (cond) {
373 a = c;
374 }
375 if (cond)
376 a = d;
377 return;
378}
379
380{
381 case 2: if (asdf &&
382 asdfasdf)
383 aasdf;
384 a = 9;
385 case 3: if (asdf)
386 aasdf;
387 a = 9;
388 case 4: x = 1;
389 y = 2;
390
391label: if (asdf)
392 here;
393
394label: if (asdf &&
395 asdfasdf)
396 {
397 }
398
399label: if (asdf &&
400 asdfasdf) {
401 there;
402 }
403
404label: if (asdf &&
405 asdfasdf)
406 there;
407}
408
409{
410 /*
411 hello with ":set comments= cino=c5"
412 */
413
414 /*
415 hello with ":set comments= cino="
416 */
417}
418
419
420{
421 if (a < b) {
422 a = a + 1;
423 } else
424 a = a + 2;
425
426 if (a)
427 do {
428 testing;
429 } while (asdfasdf);
430 a = b + 1;
431 asdfasdf
432}
433
434class bob
435{
436 int foo() {return 1;}
437 int bar;
438}
439
440main()
441{
442 while(1)
443 if (foo)
444 {
445 bar;
446 }
447 else {
448 asdf;
449 }
450 misplacedline;
451}
452
453{
454 if (clipboard.state == SELECT_DONE
455 && ((row == clipboard.start.lnum
456 && col >= clipboard.start.col)
457 || row > clipboard.start.lnum))
458}
459
460{
461 if (1) {i += 4;}
462 where_am_i;
463 return 0;
464}
465
466{
467 {
468 } // sdf(asdf
469 if (asdf)
470 asd;
471}
472
473{
474label1:
475label2:
476}
477
478{
479 int fooRet = foo(pBar1, false /*fKB*/,
480 true /*fPTB*/, 3 /*nT*/, false /*fDF*/);
481 f() {
482 for ( i = 0;
483 i < m;
484 /* c */ i++ ) {
485 a = b;
486 }
487 }
488}
489
490{
491 f1(/*comment*/);
492 f2();
493}
494
495{
496 do {
497 if (foo) {
498 } else
499 ;
500 } while (foo);
501 foo(); // was wrong
502}
503
504int x; // no extra indent because of the ;
505void func()
506{
507}
508
509char *tab[] = {"aaa",
510 "};", /* }; */ NULL}
511 int indented;
512{}
513
514char *a[] = {"aaa", "bbb",
515 "ccc", NULL};
516// here
517
518char *tab[] = {"aaa",
519 "xx", /* xx */}; /* asdf */
520int not_indented;
521
522{
523 do {
524 switch (bla)
525 {
526 case 1: if (foo)
527 bar;
528 }
529 } while (boo);
530 wrong;
531}
532
533int foo,
534 bar;
535int foo;
536
537#if defined(foo) \
538 && defined(bar)
539char * xx = "asdf\
540 foo\
541 bor";
542int x;
543
544char *foo = "asdf\
545 asdf\
546 asdf",
547 *bar;
548
549void f()
550{
551#if defined(foo) \
552 && defined(bar)
553 char *foo = "asdf\
554 asdf\
555 asdf",
556 *bar;
557 {
558 int i;
559 char *foo = "asdf\
560 asdf\
561 asdf",
562 *bar;
563 }
564#endif
565}
566#endif
567
568int y; // comment
569// comment
570
571// comment
572
573{
574 Constructor(int a,
575 int b ) : BaseClass(a)
576 {
577 }
578}
579
580void foo()
581{
582 char one,
583 two;
584 struct bla piet,
585 jan;
586 enum foo kees,
587 jannie;
588 static unsigned sdf,
589 krap;
590 unsigned int piet,
591 jan;
592 int
593 kees,
594 jan;
595}
596
597{
598 t(int f,
599 int d); // )
600 d();
601}
602
603Constructor::Constructor(int a,
604 int b
605 ) :
606 BaseClass(a,
607 b,
608 c),
609 mMember(b),
610{
611}
612
613Constructor::Constructor(int a,
614 int b ) :
615 BaseClass(a)
616{
617}
618
619Constructor::Constructor(int a,
620 int b ) /*x*/ : /*x*/ BaseClass(a),
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000621 member(b)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622{
623}
624
625class CAbc :
626 public BaseClass1,
627 protected BaseClass2
628{
629 int Test() { return FALSE; }
630 int Test1() { return TRUE; }
631
632 CAbc(int a, int b ) :
633 BaseClass(a)
634 {
635 switch(xxx)
636 {
637 case abc:
638 asdf();
639 break;
640
641 case 999:
642 baer();
643 break;
644 }
645 }
646
647 public: // <-- this was incoreectly indented before!!
648 void testfall();
649 protected:
650 void testfall();
651};
652
653class CAbc : public BaseClass1,
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000654 protected BaseClass2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655{
656};
657
658static struct
659{
660 int a;
661 int b;
662} variable[COUNT] =
663{
664 {
665 123,
666 456
667 },
668 {
669 123,
670 456
671 }
672};
673
674static struct
675{
676 int a;
677 int b;
678} variable[COUNT] =
679{
680 { 123, 456 },
681 { 123, 456 }
682};
683
684void asdf() /* ind_maxparen may cause trouble here */
685{
686 if ((0
687 && 1
688 && 1
689 && 1
690 && 1
691 && 1
692 && 1
693 && 1
694 && 1
695 && 1
696 && 1
697 && 1
698 && 1
699 && 1
700 && 1
701 && 1
702 && 1
703 && 1
704 && 1
705 && 1
706 && 1
707 && 1
708 && 1
709 && 1
710 && 1
711 && 1)) break;
712}
713
Bram Moolenaar18144c82006-04-12 21:52:12 +0000714foo()
715{
716 a = cond ? foo() : asdf
717 + asdf;
718
719 a = cond ?
720 foo() : asdf
721 + asdf;
722}
723
724int main(void)
725{
726 if (a)
727 if (b)
728 2;
729 else 3;
730 next_line_of_code();
731}
732
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000733barry()
734{
735 Foo::Foo (int one,
736 int two)
737 : something(4)
738 {}
739}
740
741barry()
742{
743 Foo::Foo (int one, int two)
744 : something(4)
745 {}
746}
747
748Constructor::Constructor(int a,
749 int b
750 ) :
751 BaseClass(a,
752 b,
753 c),
754 mMember(b)
755{
756}
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000757int main ()
758{
759 if (lala)
760 do
761 ++(*lolo);
762 while (lili
763 && lele);
764 lulu;
765}
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000766
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000767int main ()
768{
769 switch (c)
770 {
771 case 'c': if (cond)
772 {
773 }
774 }
775}
776
777main()
778{
779 (void) MyFancyFuasdfadsfnction(
780 argument);
781}
782
783main()
784{
785 char foo[] = "/*";
786 /* as
787 df */
788 hello
789}
Bram Moolenaared38b0a2011-05-25 15:16:18 +0200790
791/* valid namespaces with normal indent */
792namespace
793{
794 {
795 111111111111;
796 }
797}
798namespace /* test */
799{
800 11111111111111111;
801}
802namespace // test
803{
804 111111111111111111;
805}
806namespace
807{
808 111111111111111111;
809}
810namespace test
811{
812 111111111111111111;
813}
814namespace{
815 111111111111111111;
816}
817namespace test{
818 111111111111111111;
819}
820namespace {
821 111111111111111111;
822}
823namespace test {
824 111111111111111111;
825 namespace test2 {
826 22222222222222222;
827 }
828}
829
830/* invalid namespaces use block indent */
831namespace test test2 {
832 111111111111111111111;
833}
834namespace11111111111 {
835 111111111111;
836}
837namespace() {
838 1111111111111;
839}
840namespace()
841{
842 111111111111111111;
843}
844namespace test test2
845{
846 1111111111111111111;
847}
848namespace111111111
849{
850 111111111111111111;
851}
852
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853/* end of AUTO */
854
855
856{
857
858/* this is
859 * a real serious
860 * about life, the
861 * universe, and the
862 * rest important big
863 * comment
864 */
865 /* insert " about life, the universe, and the rest" after "serious" */
866}
867
868
869{
870 /*
871 * Testing for comments, without 'cin' set
872 */
873about life
874
875/*
876* what happens here?
877*/
878there
879
880 /*
881 the end of the comment, try inserting a line below */
882line
883
884 /* how about
885hello
886 this one */
887}
888
889
890{
891 var = this + that + vec[0] * vec[0]
892 + vec[1] * vec[1]
893 + vec2[2] * vec[2];
894}
895
896
897{
898 asdf asdflkajds f;
899 if (tes & ting) {
900 asdf asdf asdf ;
901 asdfa sdf asdf;
902 }
903 testing1;
904 if (tes & ting)
905 {
906 asdf asdf asdf ;
907 asdfa sdf asdf;
908 }
909 testing2;
910}
911
912
913main ( int first_par, /*
914 * Comment for
915 * first par
916 */
917 int second_par /*
918 * Comment for
919 * second par
920 */
921 )
922{
923 func( first_par, /*
924 * Comment for
925 * first par
926 */
927 second_par /*
928 * Comment for
929 * second par
930 */
931 );
932
933}
934
935
936{
937 do
938 {
939 if ()
940 {
941 if ()
942 asdf;
943 else
944 asdf;
945 }
946 } while ();
947 cmd; /* this should go under the } */
948}
949
950
951void f()
952{
953 if ( k() ) {
954 l();
955
956 } else { /* Start (two words) end */
957 m();
958 }
959
960 n();
961}
962
963
964void f()
965 {
966 if ( k() )
967 {
968 l();
969 } else { /* Start (two words) end */
970 m();
971 }
972 n(); /* should be under the if () */
973}
974
975
976void bar(void)
977 {
978 static array[2][2] =
979 {
980 { 1, 2 },
981 { 3, 4 },
982 }
983
984 while (a)
985 {
986 foo(&a);
987 }
988
989 {
990 int a;
991 {
992 a = a + 1;
993 }
994 }
995 b = a;
996 }
997
998void func(void)
999 {
1000 a = 1;
1001 {
1002 b = 2;
1003 }
1004 c = 3;
1005 d = 4;
1006 }
1007/* foo */
1008
1009
1010a()
1011{
1012 do {
1013 a = a +
1014 a;
1015 } while ( a ); /* add text under this line */
1016 here
1017 if ( a )
1018 a;
1019}
1020
1021
1022a()
1023{
1024label1:
1025 /* hmm */
1026 // comment
1027label2: b();
1028label3 /* post */:
1029/* pre */ label4:
1030 f(/*com*/);
1031 if (/*com*/)
1032 cmd();
1033}
1034
1035
1036/*
1037 * A simple comment
1038 */
1039
1040/*
1041** A different comment
1042*/
1043
1044
1045void f()
1046{
1047
1048 /*********
1049 A comment.
1050 *********/
1051}
1052
1053
1054void f()
1055{
1056
1057 /*********
1058 A comment.
1059 *********/
1060}
1061
1062
1063void f()
1064{
1065 c = c1 &&
1066 (
1067 c2 ||
1068 c3
1069 ) && c4;
1070}
1071
1072
1073void f()
1074{
1075 c = c1 &&
1076 (
1077 c2 ||
1078 c3
1079 ) && c4;
1080}
1081
1082
1083void f()
1084{
1085 c = c1 &&
1086 (
1087 c2 ||
1088 c3
1089 ) && c4;
1090}
1091
1092
1093void f()
1094{
1095 if ( c1
1096 && ( c2
1097 || c3))
1098 foo;
1099}
1100
1101
1102void f()
1103{
1104 if ( c1
1105 && ( c2
1106 || c3))
1107 foo;
1108}
1109
1110
1111void f()
1112{
1113 c = c1 && (
1114 c2 ||
1115 c3
1116 ) && c4;
1117 if (
1118 c1 && c2
1119 )
1120 foo;
1121}
1122
1123
1124void f()
1125{
1126 c = c1 && (
1127 c2 ||
1128 c3
1129 ) && c4;
1130 if (
1131 c1 && c2
1132 )
1133 foo;
1134}
1135
1136
1137void f()
1138{
1139 switch (x)
1140 {
1141 case 1:
1142 a = b;
1143 break;
1144 default:
1145 a = 0;
1146 break;
1147 }
1148}
1149
1150
1151void f()
1152{
1153 invokeme(
1154 argu,
1155 ment);
1156 invokeme(
1157 argu,
1158 ment
1159 );
1160 invokeme(argu,
1161 ment
1162 );
1163}
1164
1165
1166void f()
1167{
1168 statement;
1169 // comment 1
1170 // comment 2
1171}
1172
1173
1174void f()
1175{
1176 statement;
1177 // comment 1
1178 // comment 2
1179}
1180
1181
1182class CAbc
1183{
1184 int Test() { return FALSE; }
1185
1186public: // comment
1187 void testfall();
1188protected:
1189 void testfall();
1190};
1191
1192
Bram Moolenaare79d1532011-10-04 18:03:47 +02001193class Foo : public Bar
1194{
1195 public:
1196 virtual void method1(void) = 0;
1197 virtual void method2(int arg1,
1198 int arg2,
1199 int arg3) = 0;
1200};
1201
1202
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00001203 void
1204foo()
1205{
1206 if (a)
1207 {
1208 } else
1209 asdf;
1210}
1211
1212
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213{
1214 averylongfunctionnamelongfunctionnameaverylongfunctionname()->asd(
1215 asdasdf,
1216 func(asdf,
1217 asdfadsf),
1218 asdfasdf
1219 );
1220
1221 /* those are ugly, but consequent */
1222
1223 func()->asd(asdasdf,
1224 averylongfunctionname(
1225 abc,
1226 dec)->averylongfunctionname(
1227 asdfadsf,
1228 asdfasdf,
1229 asdfasdf,
1230 ),
1231 func(asdfadf,
1232 asdfasdf
1233 ),
1234 asdasdf
1235 );
1236
1237 averylongfunctionnameaverylongfunctionnameavery()->asd(fasdf(
1238 abc,
1239 dec)->asdfasdfasdf(
1240 asdfadsf,
1241 asdfasdf,
1242 asdfasdf,
1243 ),
1244 func(asdfadf,
1245 asdfasdf),
1246 asdasdf
1247 );
1248}
1249
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001250
1251int main ()
1252{
1253 if (cond1 &&
1254 cond2
1255 )
1256 foo;
1257}
1258
Bram Moolenaar8d2d71d2011-04-28 13:02:09 +02001259
1260void func(int a
1261#if defined(FOO)
1262 , int b
1263 , int c
1264#endif
1265 )
1266{
1267}
1268
1269
1270 void
1271func(int a
1272#if defined(FOO)
1273 , int b
1274 , int c
1275#endif
1276 )
1277{
1278}
1279
Bram Moolenaar4ae06c12011-05-10 11:39:19 +02001280
1281void func(void)
1282{
1283 if(x==y)
1284 if(y==z)
1285 foo=1;
1286 else { bar=1;
1287 baz=2;
1288 }
1289 printf("Foo!\n");
1290}
1291
Bram Moolenaar496f9512011-05-19 16:35:09 +02001292void func1(void)
1293{
1294 char* tab[] = {"foo", "bar",
1295 "baz", "quux",
1296 "this line used", "to be indented incorrectly"};
1297 foo();
1298}
1299
1300void func2(void)
1301{
1302 int tab[] =
1303 {1, 2,
1304 3, 4,
1305 5, 6};
1306
1307 printf("This line used to be indented incorrectly.\n");
1308}
1309
1310void func3(void)
1311{
1312 int tab[] = {
1313 1, 2,
1314 3, 4,
1315 5, 6};
1316
1317 printf("Don't you dare indent this line incorrectly!\n);
1318}
1319
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02001320
1321void func(void)
1322{
Bram Moolenaar50f42ca2011-07-15 14:12:30 +02001323 int tab[] =
1324 {
1325 1, 2, 3,
1326 4, 5, 6};
1327
1328 printf("Indent this line correctly!\n");
1329
1330 switch (foo)
1331 {
1332 case bar:
1333 printf("bar");
1334 break;
1335 case baz: {
1336 printf("baz");
1337 break;
1338 }
1339 case quux:
1340 printf("But don't break the indentation of this instruction\n");
1341 break;
1342 }
1343}
1344
1345
1346void func(void)
1347{
Bram Moolenaaraede6ce2011-05-10 11:56:30 +02001348 cout << "a"
1349 << "b"
1350 << ") :"
1351 << "c";
1352}
1353
Bram Moolenaara4271d52011-05-10 13:38:27 +02001354
1355void func(void)
1356{
1357 /*
1358 * This is a comment.
1359 */
1360 foo();
1361}
1362
Bram Moolenaar334adf02011-05-25 13:34:04 +02001363
1364void func(void)
1365{
1366 for (int i = 0; i < 10; ++i)
1367 if (i & 1) {
1368 foo(1);
1369 } else
1370 foo(0);
1371 baz();
1372}
1373
Bram Moolenaared38b0a2011-05-25 15:16:18 +02001374
Bram Moolenaar6ec154b2011-06-12 21:51:08 +02001375NAMESPACESTART
Bram Moolenaared38b0a2011-05-25 15:16:18 +02001376/* valid namespaces with normal indent */
1377namespace
1378{
1379{
1380 111111111111;
1381}
1382}
1383namespace /* test */
1384{
138511111111111111111;
1386}
1387namespace // test
1388{
1389111111111111111111;
1390}
1391namespace
1392{
1393111111111111111111;
1394}
1395namespace test
1396{
1397111111111111111111;
1398}
1399namespace{
1400111111111111111111;
1401}
1402namespace test{
1403111111111111111111;
1404}
1405namespace {
1406111111111111111111;
1407}
1408namespace test {
1409111111111111111111;
1410namespace test2 {
141122222222222222222;
1412}
1413}
1414
1415/* invalid namespaces use block indent */
1416namespace test test2 {
1417 111111111111111111111;
1418}
1419namespace11111111111 {
1420 111111111111;
1421}
1422namespace() {
1423 1111111111111;
1424}
1425namespace()
1426{
1427 111111111111111111;
1428}
1429namespace test test2
1430{
1431 1111111111111111111;
1432}
1433namespace111111111
1434{
1435 111111111111111111;
1436}
1437NAMESPACEEND
1438
1439
Bram Moolenaar6ec154b2011-06-12 21:51:08 +02001440
1441JSSTART
1442var bar = {
1443 foo: {
1444 that: this,
1445 some: ok,
1446 },
1447 "bar":{
1448 a : 2,
1449 b: "123abc",
1450 x: 4,
1451 "y": 5
1452 }
1453}
1454JSEND
1455
Bram Moolenaar76f7fd32011-07-20 15:09:43 +02001456
1457JSSTART
1458var foo = [
14591, // indent 8 more
1460 2,
1461 3
1462 ]; // indent 8 less
1463JSEND
1464
1465
1466JSSTART
1467function bar() {
1468 var foo = [
1469 1,
1470 2,
1471 3
1472 ]; // indent 16 less
1473}
1474JSEND
1475
1476
1477JSSTART
1478(function($){
1479
1480 var class_name='myclass';
1481
1482 function private_method() {
1483 }
1484
1485 var public_method={
1486 method: function(options,args){
1487 private_method();
1488 }
1489 }
1490
1491 function init(options) {
1492
1493 $(this).data(class_name+'_public',$.extend({},{
1494 foo: 'bar',
1495 bar: 2, // indent 8 more
1496 foobar: [ // indent 8 more
1497 1, // indent 8 more
1498 2, // indent 16 more
1499 3 // indent 16 more
1500 ],
1501 callback: function(){ // indent 8 more
1502 return true; // indent 8 more
1503 } // indent 8 more
1504 }, options||{}));
1505 }
1506
1507 $.fn[class_name]=function() {
1508
1509 var _arguments=arguments;
1510 return this.each(function(){
1511
1512 var options=$(this).data(class_name+'_public');
1513 if (!options) {
1514 init.apply(this,_arguments);
1515
1516 } else {
1517 var method=public_method[_arguments[0]];
1518
1519 if (typeof(method)!='function') {
1520 console.log(class_name+' has no method "'+_arguments[0]+'"');
1521 return false;
1522 }
1523 _arguments[0]=options;
1524 method.apply(this,_arguments);
1525 }
1526 });
1527 }
1528
1529})(jQuery);
1530JSEND
1531
1532
1533JSSTART
1534function init(options) {
1535 $(this).data(class_name+'_public',$.extend({},{
1536 foo: 'bar',
1537 bar: 2,
1538 foobar: [
1539 1, // indent 8 more
1540 2, // indent 8 more
1541 3 // indent 8 more
1542 ],
1543 callback: function(){
1544 return true;
1545 }
1546 }, options||{}));
1547}
1548JSEND
1549
1550
1551JSSTART
1552(function($){
1553 function init(options) {
1554 $(this).data(class_name+'_public',$.extend({},{
1555 foo: 'bar',
1556 bar: 2, // indent 8 more
1557 foobar: [ // indent 8 more
1558 1, // indent 8 more
1559 2, // indent 16 more
1560 3 // indent 16 more
1561 ],
1562 callback: function(){ // indent 8 more
1563 return true; // indent 8 more
1564 } // indent 8 more
1565 }, options||{}));
1566 }
1567})(jQuery);
1568JSEND
1569