]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Ecc/CodeFragmentCollector.py
BaseTools: Remove duplicated words in Python tools
[mirror_edk2.git] / BaseTools / Source / Python / Ecc / CodeFragmentCollector.py
index f844b4a0b3dc531116c898137b4749291ea690e0..d8d6aff08a6e04d827ee4039d5e850ae9e8bd788 100644 (file)
@@ -3,13 +3,7 @@
 #\r
 #  Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>\r
 #\r
-#  This program and the accompanying materials\r
-#  are licensed and made available under the terms and conditions of the BSD License\r
-#  which accompanies this distribution.  The full text of the license may be found at\r
-#  http://opensource.org/licenses/bsd-license.php\r
-#\r
-#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+#  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 ##\r
@@ -79,7 +73,7 @@ class CodeFragmentCollector:
         self.FileName = FileName\r
         self.CurrentLineNumber = 1\r
         self.CurrentOffsetWithinLine = 0\r
-\r
+        self.TokenReleaceList = []\r
         self.__Token = ""\r
         self.__SkippedChars = ""\r
 \r
@@ -509,6 +503,9 @@ class CodeFragmentCollector:
         FileStringContents = ''\r
         for fileLine in self.Profile.FileLinesList:\r
             FileStringContents += fileLine\r
+        for Token in self.TokenReleaceList:\r
+            if Token in FileStringContents:\r
+                FileStringContents = FileStringContents.replace(Token, 'TOKENSTRING')\r
         cStream = antlr.InputStream(FileStringContents)\r
         lexer = CLexer(cStream)\r
         tStream = antlr.CommonTokenStream(lexer)\r