소스 검색

Fix pos field closing in XML node output after commit 47720

git-svn-id: trunk@47737 -
pierre 4 년 전
부모
커밋
a0e96fd551
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      compiler/node.pas

+ 2 - 2
compiler/node.pas

@@ -943,9 +943,9 @@ implementation
               else
                 Write(T, ',', i)
             end;
-
+        write(t,'"');
         if (nf_pass1_done in flags) then
-          write(t,'" complexity="',node_complexity(self),'"');
+          write(t,' complexity="',node_complexity(self),'"');
       end;
 
     procedure tnode.XMLPrintNodeData(var T: Text);