-
Notifications
You must be signed in to change notification settings - Fork 10
Missing parameter #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mkmojo
wants to merge
542
commits into
mbdriscoll:master
Choose a base branch
from
ucb-sejits:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…andling in DeclarationFiller
…n call and something else.
Multiple Assign Feature
…gn ast into target,value nodes, not a set of special cases. Also, reverted declfiller changes because the deep lookup was unnecessary. We need to probably recursively traverse the binops to find their types instead of looking one layer deep.
…ler for type inference
…ps has been added back in.
…uff, make functioncall type inference work (kinda) and realized that DeclFiller should only run on CFiles
…orking and I'm not thinking really clearly. Hope this one works
…t import conditional since it's zip_longest in py3k
Multiple New Features Added to ctree
Src deletion feature
… (i.e. char*s with ints)
…nDecl handler Better handling of hindemith non-existence or error Fix looking inside call node for name attr, might not be present
|
Changes Unknown when pulling a0fd1b5 on ucb-sejits:master into * on mbdriscoll:master*. |
Fixes nasty stack dump when it does not.
check that cache directory exists before removing it.
Fix OpenCL on Travis
Feature/array and dot type
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In the class DotManager of file ctree/visual/dot_manager.py
The
dot_ast_to_filemethod passed in a wrong parameterfilenameThis will lead to a global variable filename not found error.
I fixed this by giving DotManager.run_dot() method the correct parameter.