Lines 61-67
Link Here
|
61 |
|
61 |
|
62 |
# create view statement stuff |
62 |
# create view statement stuff |
63 |
def createview(l, c): |
63 |
def createview(l, c): |
64 |
[create, view, name, namelist, as, selection] = l |
64 |
[create, view, name, namelist, as_, selection] = l |
65 |
return semantics.CreateView(name, namelist, selection) |
65 |
return semantics.CreateView(name, namelist, selection) |
66 |
|
66 |
|
67 |
optnamelist0 = returnNone |
67 |
optnamelist0 = returnNone |
Lines 288-298
Link Here
|
288 |
return others |
288 |
return others |
289 |
|
289 |
|
290 |
def trl1as(l,c): |
290 |
def trl1as(l,c): |
291 |
[name, as, alias] = l |
291 |
[name, as_, alias] = l |
292 |
return [(name, alias)] |
292 |
return [(name, alias)] |
293 |
|
293 |
|
294 |
def trlnas(l,c): |
294 |
def trlnas(l,c): |
295 |
[name, as, alias, comma, others] = l |
295 |
[name, as_, alias, comma, others] = l |
296 |
others.insert(0, (name, alias)) |
296 |
others.insert(0, (name, alias)) |
297 |
return others |
297 |
return others |
298 |
|
298 |
|
Lines 546-552
Link Here
|
546 |
return (exp, None) # no binding! |
546 |
return (exp, None) # no binding! |
547 |
|
547 |
|
548 |
def selectname(list, context): |
548 |
def selectname(list, context): |
549 |
[exp, as, alias] = list |
549 |
[exp, as_, alias] = list |
550 |
return (exp, alias) |
550 |
return (exp, alias) |
551 |
|
551 |
|
552 |
colalias = elt0 |
552 |
colalias = elt0 |