Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
8a421be2
Kaydet (Commit)
8a421be2
authored
Nis 28, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dump more info from ScTokenArray (for debugging).
Change-Id: I57897c0b3c7f5974f2b9e510f03c91e23e362096
üst
e34afd43
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
2 deletions
+43
-2
token.cxx
sc/source/core/tool/token.cxx
+43
-2
No files found.
sc/source/core/tool/token.cxx
Dosyayı görüntüle @
8a421be2
...
@@ -3784,14 +3784,55 @@ void ScTokenArray::WrapReference( const ScAddress& rPos, SCCOL nMaxCol, SCROW nM
...
@@ -3784,14 +3784,55 @@ void ScTokenArray::WrapReference( const ScAddress& rPos, SCCOL nMaxCol, SCROW nM
}
}
#if DEBUG_FORMULA_COMPILER
#if DEBUG_FORMULA_COMPILER
namespace
{
void
dumpFormulaToken
(
const
FormulaToken
&
rToken
)
{
cout
<<
"-- FormulaToken"
<<
endl
;
cout
<<
" opcode: "
<<
rToken
.
GetOpCode
()
<<
endl
;
cout
<<
" type: "
<<
static_cast
<
int
>
(
rToken
.
GetType
())
<<
endl
;
switch
(
rToken
.
GetType
())
{
case
svDouble
:
cout
<<
" value: "
<<
rToken
.
GetDouble
()
<<
endl
;
break
;
case
svString
:
cout
<<
" string: "
<<
OUStringToOString
(
rToken
.
GetString
().
getString
(),
RTL_TEXTENCODING_UTF8
).
getStr
()
<<
endl
;
break
;
default
:
;
}
}
}
void
ScTokenArray
::
Dump
()
const
void
ScTokenArray
::
Dump
()
const
{
{
cout
<<
"+++ Normal Tokens +++"
<<
endl
;
for
(
sal_uInt16
i
=
0
;
i
<
nLen
;
++
i
)
for
(
sal_uInt16
i
=
0
;
i
<
nLen
;
++
i
)
{
{
const
ScToken
*
p
=
dynamic_cast
<
const
ScToken
*>
(
pCode
[
i
]);
const
FormulaToken
*
pToken
=
pCode
[
i
];
const
ScToken
*
p
=
dynamic_cast
<
const
ScToken
*>
(
pToken
);
if
(
!
p
)
{
dumpFormulaToken
(
*
pToken
);
continue
;
}
p
->
Dump
();
}
cout
<<
"+++ RPN Tokens +++"
<<
endl
;
for
(
sal_uInt16
i
=
0
;
i
<
nRPN
;
++
i
)
{
const
FormulaToken
*
pToken
=
pRPN
[
i
];
const
ScToken
*
p
=
dynamic_cast
<
const
ScToken
*>
(
pToken
);
if
(
!
p
)
if
(
!
p
)
{
{
cout
<<
"-- (non ScToken)"
<<
endl
;
dumpFormulaToken
(
*
pToken
)
;
continue
;
continue
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment