Skip to content

Commit

Permalink
Update asg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Aug 27, 2016
1 parent 1cb3b14 commit 3419ae8
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/py/autowig/asg.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,6 @@
def all_visitor(node):
return True

def free_visitor(node):
return getattr(node, 'access', False) == 'none'

def public_visitor(node):
return getattr(node, 'access', False) in ['none', 'public']

def protected_visitor(node):
return getattr(node, 'access', False) in ['none', 'public', 'protected']

def private_visitor(node):
return getattr(node, 'access', False)

class NodeProxy(object):
"""Abstract semantic graph node proxy
Expand Down

0 comments on commit 3419ae8

Please sign in to comment.