View source code
Display the source code in dmd/location.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.
Struct dmd.location.SourceLoc
Describes a location in the source code as a file + line number + column number
struct SourceLoc;
While Loc
is a compact opaque location meant to be stored in the AST,
this struct has simple modifiable fields and is used for printing.
Fields
Name | Type | Description |
---|---|---|
column
|
uint | column number (starts at 1) |
filename
|
const(char)[] | name of source file |
fileOffset
|
uint | byte index into file |
line
|
uint | line number (starts at 1) |
Authors
License
Copyright © 1999-2025 by the D Language Foundation | Page generated by ddox.