Package com.google.common.truth
Class ActualValueInference.FrameInfo
- java.lang.Object
-
- com.google.common.truth.ActualValueInference.FrameInfo
-
- Direct Known Subclasses:
AutoValue_ActualValueInference_FrameInfo
- Enclosing class:
- ActualValueInference
abstract static class ActualValueInference.FrameInfo extends java.lang.Object
A value class to represent a frame.
-
-
Constructor Summary
Constructors Constructor Description FrameInfo()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) static ActualValueInference.FrameInfo
create(com.google.common.collect.ImmutableList<ActualValueInference.StackEntry> locals, com.google.common.collect.ImmutableList<ActualValueInference.StackEntry> stack)
(package private) abstract com.google.common.collect.ImmutableList<ActualValueInference.StackEntry>
locals()
(package private) abstract com.google.common.collect.ImmutableList<ActualValueInference.StackEntry>
stack()
-
-
-
Method Detail
-
create
static ActualValueInference.FrameInfo create(com.google.common.collect.ImmutableList<ActualValueInference.StackEntry> locals, com.google.common.collect.ImmutableList<ActualValueInference.StackEntry> stack)
-
locals
abstract com.google.common.collect.ImmutableList<ActualValueInference.StackEntry> locals()
-
stack
abstract com.google.common.collect.ImmutableList<ActualValueInference.StackEntry> stack()
-
-