* Fix variables with special names declaration in SPython * Add new syntax tree converters applying flag checking in Intellisense * Fix IsVariableOrConstant function in Intellisense * Optimize CollectNamesFromUsedUnits function in Compiler
17 lines
617 B
C#
17 lines
617 B
C#
// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
|
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
|
using System.Collections.Generic;
|
|
|
|
namespace PascalABCCompiler
|
|
{
|
|
public struct CompilationArtifactsUsedBySyntaxConverters
|
|
{
|
|
public CompilationArtifactsUsedBySyntaxConverters(Dictionary<string, Dictionary<string, bool>> namesFromUsedUnits)
|
|
{
|
|
NamesFromUsedUnits = namesFromUsedUnits;
|
|
}
|
|
|
|
public Dictionary<string, Dictionary<string, bool>> NamesFromUsedUnits { get; }
|
|
}
|
|
}
|