Fix deprecations

This commit is contained in:
Grim Maple 2022-04-14 23:57:20 +03:00
parent 51728e70eb
commit 61cda23311
3 changed files with 16 additions and 16 deletions

View File

@ -69,7 +69,7 @@ class BasicTypeX : Lexem {
in { in {
assert(isBasicTypeXToken(token)); assert(isBasicTypeXToken(token));
} }
body { do {
_token = token; _token = token;
} }
} }
@ -97,7 +97,7 @@ class TypeCtor : Lexem {
in { in {
assert(isTypeCtorToken(token)); assert(isTypeCtorToken(token));
} }
body { do {
_token = token; _token = token;
} }
} }
@ -112,14 +112,14 @@ class TypeCtors : Lexem {
in { in {
assert(isTypeCtorToken(token)); assert(isTypeCtorToken(token));
} }
body { do {
_list ~= new TypeCtor(token); _list ~= new TypeCtor(token);
} }
public void append(Token token) public void append(Token token)
in { in {
assert(isTypeCtorToken(token)); assert(isTypeCtorToken(token));
} }
body { do {
_list ~= new TypeCtor(token); _list ~= new TypeCtor(token);
} }
} }
@ -134,7 +134,7 @@ class Identifier : Lexem {
in { in {
assert(identifier.type == TokenType.IDENTIFIER); assert(identifier.type == TokenType.IDENTIFIER);
} }
body { do {
_token = cast(IdentToken)identifier; _token = cast(IdentToken)identifier;
} }
} }
@ -157,14 +157,14 @@ class IdentifierList : Lexem {
in { in {
assert(ident.type == TokenType.IDENTIFIER); assert(ident.type == TokenType.IDENTIFIER);
} }
body { do {
_identifier = new Identifier(ident); _identifier = new Identifier(ident);
_identifierList = identifierList; _identifierList = identifierList;
} }
public this(TemplateInstance templateInstance, IdentifierList identifierList = null) public this(TemplateInstance templateInstance, IdentifierList identifierList = null)
in { in {
} }
body { do {
_templateInstance = templateInstance; _templateInstance = templateInstance;
_identifierList = identifierList; _identifierList = identifierList;
} }
@ -181,7 +181,7 @@ class TemplateInstance : Lexem {
public this() public this()
in { in {
} }
body { do {
} }
} }
@ -207,7 +207,7 @@ class BasicType : Lexem {
public this() public this()
in { in {
} }
body { do {
} }
} }
@ -228,7 +228,7 @@ class Typeof : Lexem {
public this(Expression expression) public this(Expression expression)
in { in {
} }
body { do {
_expression = expression; _expression = expression;
} }
} }
@ -245,7 +245,7 @@ class Type : Lexem {
public this() public this()
in { in {
} }
body { do {
} }
} }
@ -259,7 +259,7 @@ class Expression : Lexem {
public this() public this()
in { in {
} }
body { do {
} }
} }
@ -273,7 +273,7 @@ class AltDeclarator : Lexem {
public this() public this()
in { in {
} }
body { do {
} }
} }

View File

@ -790,7 +790,7 @@ class CompletionPopupMenu : PopupMenu {
MenuItem updateItems() { MenuItem updateItems() {
MenuItem res = new MenuItem(); MenuItem res = new MenuItem();
foreach(int i, dstring suggestion ; _suggestions) { foreach(i, dstring suggestion ; _suggestions) {
if (_prefix.length && !suggestion.startsWith(_prefix)) if (_prefix.length && !suggestion.startsWith(_prefix))
continue; continue;
string iconId; string iconId;

View File

@ -372,11 +372,11 @@ SearchMatchList findMatches(in string filename, in dstring searchString) {
SearchMatchList match; SearchMatchList match;
match.filename = filename; match.filename = filename;
foreach(int lineIndex, dstring line; content.lines) { foreach(lineIndex, dstring line; content.lines) {
auto colIndex = line.indexOf(searchString); auto colIndex = line.indexOf(searchString);
if (colIndex != -1) { if (colIndex != -1) {
match.matches ~= SearchMatch(lineIndex, colIndex, line); match.matches ~= SearchMatch(cast(int)lineIndex, colIndex, line);
} }
} }
return match; return match;