1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- let example = [
- 'FOO',
- 'BAR',
- // Comment
- ];
- foo({},
- // Comment
- );
- o = {
- state,
- // Comment
- };
- o = {
- state,
- // Comment
- };
- function supersupersupersuperLongF(
- supersupersupersuperLongA,
- supersupersupersuperLongB
- // Comment
- ) {
- a
- }
- function supersupersupersuperLongF(
- supersupersupersuperLongA,
- supersupersupersuperLongB,
- // Comment
- ) {
- a
- }
- this.getAttribute(function(s)
- /*string*/ {
- console.log()
- });
- this.getAttribute(function(s) /*string*/ {
- console.log()
- });
|