Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bpftrace
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bpftrace
Commits
759c786f
Commit
759c786f
authored
Sep 12, 2018
by
Brendan Gregg
Committed by
GitHub
Sep 12, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #92 from iovisor/bug
fix parser line numbers for multi-line comments
parents
753ae0ab
c013d070
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/lexer.l
src/lexer.l
+4
-2
No files found.
src/lexer.l
View file @
759c786f
...
...
@@ -40,11 +40,13 @@ path :(\\.|[_\-\./a-zA-Z0-9])*:
{vspace}+ { loc.lines(yyleng); loc.step(); }
"//".*$ // single-line comments
"/*" BEGIN(COMMENT);
// multi-line comments
"/*" BEGIN(COMMENT);
// multi-line comments; see flex(1)
<COMMENT>"/*" driver.error(loc, std::string("nested comments unsupported"));
<COMMENT>[^*\n]* ;
<COMMENT>"*"+[^*/\n]* ;
<COMMENT>"\n" loc.lines(1);
<COMMENT>"*/" BEGIN(INITIAL);
<COMMENT>"EOF" driver.error(loc, std::string("end of file during comment"));
<COMMENT>.|"\n" ;
pid|tid|uid|gid|nsecs|cpu|comm|stack|ustack|arg[0-9]|retval|func|name|curtask|rand|ctx {
return Parser::make_BUILTIN(yytext, loc); }
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment