File: binary.rb

package info (click to toggle)
ruby-unparser 0.6.13-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 936 kB
  • sloc: ruby: 7,691; sh: 6; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(a || b).foo
(break foo) || a
(return foo) || a
a && b && c
a = b || break
a = b || next
a = b || return
a and return foo
a or return
a or return foo
a || (b || c)
a || (break foo)
a || (return foo)
b or break
b or next
break or b
next or b
return or a
a = b or c
a = b and c