View source code
Display the source code in dmd/identifier.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla 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 using local clone.

Function dmd.identifier.Identifier.generateIdWithLoc

Generate deterministic named identifier based on a source location, such that the name is consistent across multiple compilations. A new unique name is generated. If the prefix+location is already in the stringtable, an extra suffix is added (starting the count at "_1").

static Identifier generateIdWithLoc (
  string prefix,
  ref const(Loc) loc
);

Parameters

NameDescription
prefix first part of the identifier name.
loc source location to use in the identifier name.

Returns

Identifier (inside Identifier.idPool) with deterministic name based on the source location.

Authors

Walter Bright

License

Boost License 1.0