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

Side by Side Diff: mojo/public/third_party/ply/yacc.py

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
OLDNEW
1 # ----------------------------------------------------------------------------- 1 # -----------------------------------------------------------------------------
2 # ply: yacc.py 2 # ply: yacc.py
3 # 3 #
4 # Copyright (C) 2001-2011, 4 # Copyright (C) 2001-2011,
5 # David M. Beazley (Dabeaz LLC) 5 # David M. Beazley (Dabeaz LLC)
6 # All rights reserved. 6 # All rights reserved.
7 # 7 #
8 # Redistribution and use in source and binary forms, with or without 8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions are 9 # modification, are permitted provided that the following conditions are
10 # met: 10 # met:
(...skipping 3256 matching lines...) Expand 10 before | Expand all | Expand 10 after
3267 # Write a pickled version of the tables 3267 # Write a pickled version of the tables
3268 if picklefile: 3268 if picklefile:
3269 lr.pickle_table(picklefile,signature) 3269 lr.pickle_table(picklefile,signature)
3270 3270
3271 # Build the parser 3271 # Build the parser
3272 lr.bind_callables(pinfo.pdict) 3272 lr.bind_callables(pinfo.pdict)
3273 parser = LRParser(lr,pinfo.error_func) 3273 parser = LRParser(lr,pinfo.error_func)
3274 3274
3275 parse = parser.parse 3275 parse = parser.parse
3276 return parser 3276 return parser
OLDNEW
« no previous file with comments | « mojo/public/third_party/ply/license.patch ('k') | mojo/public/tools/bindings/generators/cpp_templates/enum_macros.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698