QuickfixRange

Describes how a quickfix should be performed on a range

Constructors

this
this(size_t from, size_t to, string replaceWith)

Create a new quickfix range

this
this(Token token, string replaceWith)

Create a new quickfix range

this
this(Token from, Token to, string replaceWith)

Create a new quickfix range

Members

Functions

opCmp
int opCmp(QuickfixRange other)
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(QuickfixRange other)
Undocumented in source. Be warned that the author may not have intended to support it.
toHash
size_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

from
size_t from;

Describes the range in the *original* document to modify

replaceWith
string replaceWith;

The code to replace the given range with

to
size_t to;

Describes the range in the *original* document to modify

Meta