• Robert Griesemer's avatar
    cmd/compile/internal/syntax: permit /*line file:line:col*/ directives · ac45cb9a
    Robert Griesemer authored
    R=go1.11
    
    This implements parsing of /*line file:line*/ and /*line file:line:col*/
    directives and also extends the optional column format to regular //line
    directives, per #22662.
    
    For a line directive to be recognized, its comment text must start with
    the prefix "line " which is followed by one of the following:
    
    :line
    :line:col
    filename:line
    filename:line:col
    
    with at least one : present. The line and col values must be unsigned
    decimal integers; everything before is considered part of the filename.
    
    Valid line directives are:
    
    //line :123
    //line :123:8
    //line foo.go:123
    //line C:foo.go:123	(filename is "C:foo.go")
    //line C:foo.go:123:8	(filename is "C:foo.go")
    /*line ::123*/		(filename is ":")
    
    No matter the comment format, at the moment all directives act as if
    they were in //line comments, and column information is ignored.
    To be addressed in subsequent CLs.
    
    For #22662.
    
    Change-Id: I1a2dc54bacc94bc6cdedc5229ee13278971f314e
    Reviewed-on: https://go-review.googlesource.com/86037Reviewed-by: 's avatarMatthew Dempsky <mdempsky@google.com>
    ac45cb9a
Name
Last commit
Last update
.github Loading commit data...
api Loading commit data...
doc Loading commit data...
lib/time Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README.md Loading commit data...
VERSION Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...