Home
last modified time | relevance | path

Searched refs:IsLocal (Results 1 – 3 of 3) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/
DEntry.cs25 IsLocal = isLocal; in Entry()
126 return new Entry(VariableName, Type, RegistrationInfos, Attributes, IsLocal, Alias); in MakeShallowCopy()
133 public bool IsLocal { get; private set; } property in Antmicro.Renode.PlatformDescription.Syntax.Entry
/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/
DParserTests.cs413 Assert.IsFalse(entries[0].IsLocal); in ShouldParseLocalAndNonLocalEntry()
414 Assert.IsTrue(entries[1].IsLocal); in ShouldParseLocalAndNonLocalEntry()
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/
DCreationDriver.cs78 … = variableStore.DeclareVariable(entry.VariableName, resolved, entry.StartPosition, entry.IsLocal); in ProcessVariableDeclarations()