summaryrefslogtreecommitdiff
path: root/Source/ModelViewer/DataModel.cs
diff options
context:
space:
mode:
authorGravatar MichalMoskal <unknown>2011-01-26 23:30:35 +0000
committerGravatar MichalMoskal <unknown>2011-01-26 23:30:35 +0000
commitcfa55f3b6815a7fa81409c7742fe81a695a6299d (patch)
treebd4a7956e3ef8f3b1ef11ca2a40567ce1e0aff27 /Source/ModelViewer/DataModel.cs
parent6a6b99060e1b13cc5b9ebe394137fa23a1308710 (diff)
VCC-BVD: display qualifiers of VCC-generated copies of local variables; hide states that do not update "$s" (heap).
Fix some bugs in source view. Rename SourceLocation to SourceViewState.
Diffstat (limited to 'Source/ModelViewer/DataModel.cs')
-rw-r--r--Source/ModelViewer/DataModel.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/ModelViewer/DataModel.cs b/Source/ModelViewer/DataModel.cs
index f8a9abf0..74e206aa 100644
--- a/Source/ModelViewer/DataModel.cs
+++ b/Source/ModelViewer/DataModel.cs
@@ -42,7 +42,7 @@ namespace Microsoft.Boogie.ModelViewer
IEnumerable<string> SortFields(IEnumerable<IDisplayNode> fields);
}
- public class SourceLocation
+ public class SourceViewState
{
public string Header;
public string RichTextContent;
@@ -52,7 +52,7 @@ namespace Microsoft.Boogie.ModelViewer
public interface IState
{
string Name { get; }
- SourceLocation ShowSource();
+ SourceViewState ShowSource();
IEnumerable<IDisplayNode> Nodes { get; }
}
@@ -104,7 +104,7 @@ namespace Microsoft.Boogie.ModelViewer
}
- public SourceLocation ShowSource()
+ public SourceViewState ShowSource()
{
return null;
}