File: comments.txt

package info (click to toggle)
node-lezer 1.5.3%2B~cs14.29.58-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,928 kB
  • sloc: javascript: 2,134; makefile: 15
file content (22 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# comment

// This is a comment
/* This is also a comment */
/* this comment /* // /** ends here: */

==>

Program(LineComment, BlockComment, BlockComment)


# comments and literals

123;
// comment

==>

Program(
  ExpressionStatement(IntegerLiteral),
  LineComment)