Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
c5560a14
Commit
c5560a14
authored
Aug 25, 2010
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for comma operator bug.
parent
7619f085
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
18 deletions
+20
-18
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+20
-18
No files found.
Cython/Compiler/Parsing.py
View file @
c5560a14
...
...
@@ -2094,7 +2094,7 @@ def p_c_simple_declarator(s, ctx, empty, is_type, cmethod_flag,
error
(
s
.
position
(),
"Declarator should be empty"
)
s
.
next
()
cname
=
p_opt_cname
(
s
)
if
name
!=
"operator"
and
s
.
sy
==
'='
and
assignable
:
if
name
!=
'operator'
and
s
.
sy
==
'='
and
assignable
:
s
.
next
()
rhs
=
p_test
(
s
)
else
:
...
...
@@ -2102,27 +2102,29 @@ def p_c_simple_declarator(s, ctx, empty, is_type, cmethod_flag,
error
(
s
.
position
(),
"Empty declarator"
)
name
=
""
cname
=
None
print
pos
,
ctx
.
__dict__
if
cname
is
None
and
ctx
.
namespace
is
not
None
:
cname
=
ctx
.
namespace
+
"::"
+
name
if
name
==
'operator'
and
ctx
.
visibility
==
'extern'
:
if
name
==
'operator'
and
ctx
.
visibility
==
'extern'
and
nonempty
:
op
=
s
.
sy
s
.
next
()
# Handle diphthong operators.
if
op
==
'('
:
s
.
expect
(
')'
)
op
=
'()'
elif
op
==
'['
:
s
.
expect
(
']'
)
op
=
'[]'
if
op
in
[
'-'
,
'+'
,
'|'
,
'&'
]
and
s
.
sy
==
op
:
op
=
op
*
2
s
.
next
()
if
s
.
sy
==
'='
:
op
+=
s
.
sy
if
op
in
'+-*/<=>!%&|([^~,'
:
s
.
next
()
if
op
not
in
supported_overloaded_operators
:
s
.
error
(
"Overloading operator '%s' not yet supported."
%
op
)
name
=
name
+
op
# Handle diphthong operators.
if
op
==
'('
:
s
.
expect
(
')'
)
op
=
'()'
elif
op
==
'['
:
s
.
expect
(
']'
)
op
=
'[]'
if
op
in
[
'-'
,
'+'
,
'|'
,
'&'
]
and
s
.
sy
==
op
:
op
=
op
*
2
s
.
next
()
if
s
.
sy
==
'='
:
op
+=
s
.
sy
s
.
next
()
if
op
not
in
supported_overloaded_operators
:
s
.
error
(
"Overloading operator '%s' not yet supported."
%
op
)
name
=
name
+
op
result
=
Nodes
.
CNameDeclaratorNode
(
pos
,
name
=
name
,
cname
=
cname
,
default
=
rhs
)
result
.
calling_convention
=
calling_convention
...
...
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