diff options
Diffstat (limited to 'BaseTools/Source/Python/Eot/CodeFragment.py')
-rw-r--r-- | BaseTools/Source/Python/Eot/CodeFragment.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/BaseTools/Source/Python/Eot/CodeFragment.py b/BaseTools/Source/Python/Eot/CodeFragment.py index 94c3f52d5c..ec73fc46ac 100644 --- a/BaseTools/Source/Python/Eot/CodeFragment.py +++ b/BaseTools/Source/Python/Eot/CodeFragment.py @@ -41,24 +41,6 @@ class PP_Directive : self.StartPos = Begin
self.EndPos = End
-## The description of assignment expression and start & end position
-#
-#
-class AssignmentExpression :
- ## The constructor
- #
- # @param self The object pointer
- # @param Str The message to record
- # @param Begin The start position tuple.
- # @param End The end position tuple.
- #
- def __init__(self, Lvalue, Op, Exp, Begin, End):
- self.Name = Lvalue
- self.Operator = Op
- self.Value = Exp
- self.StartPos = Begin
- self.EndPos = End
-
## The description of predicate expression and start & end position
#
#
|