File: basic_testcore_defs.rb

package info (click to toggle)
klayout 0.28.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 279,296 kB
  • sloc: cpp: 2,009,432; ruby: 43,292; xml: 25,855; python: 11,686; sh: 1,611; tcl: 212; perl: 170; makefile: 112; ansic: 42
file content (78 lines) | stat: -rw-r--r-- 1,014 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78

# extend A
class RBA::A 

  alias_method :org_initialize, :initialize

  def initialize(*args)
    org_initialize(*args)
    @offset = nil
  end
  def s( o )
    @offset = o
  end
  def g
    return @offset
  end
  def m
    return @offset+a1
  end
  def call_a10_prot(f)
    a10_prot(f)
  end
  def inspect
    if @offset 
      @offset.to_s
    else
      "a1=" + self.a1.to_s
    end 
  end

private
  @offset

end

class MyException < RuntimeError
  def initialize(s)
    super(s)
  end
end
    
class XEdge < RBA::Edge
  def initialize
    super(RBA::Point.new(1,2), RBA::Point.new(3,4))
  end
end

class RBA::E
  def m 
    @m
  end
  def m=(x)
    @m = x
  end
  @m = nil
end

class RBAGObject < RBA::GObject
  def initialize(z)
    super()
    @z = z
  end
  # reimplementation of "virtual int g()"
  def g
    return @z*2
  end
end

class RBAGFactory < RBA::GFactory
  def initialize
    super()
  end
  # reimplementation of "virtual GObject *f(int)"
  def f(z)
    return RBAGObject::new(z)
  end
end