Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(570)

Side by Side Diff: third_party/cython/src/Cython/Plex/Actions.pxd

Issue 385073004: Adding cython v0.20.2 in third-party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference cython dev list thread. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 cdef class Action:
3 cdef perform(self, token_stream, text)
4 cpdef same_as(self, other)
5
6 cdef class Return(Action):
7 cdef object value
8 cdef perform(self, token_stream, text)
9 cpdef same_as(self, other)
10
11 cdef class Call(Action):
12 cdef object function
13 cdef perform(self, token_stream, text)
14 cpdef same_as(self, other)
15
16 cdef class Begin(Action):
17 cdef object state_name
18 cdef perform(self, token_stream, text)
19 cpdef same_as(self, other)
20
21 cdef class Ignore(Action):
22 cdef perform(self, token_stream, text)
23
24 cdef class Text(Action):
25 cdef perform(self, token_stream, text)
OLDNEW
« no previous file with comments | « third_party/cython/src/Cython/Includes/posix/unistd.pxd ('k') | third_party/cython/src/Cython/Plex/Actions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698