class ClientServerSameError

Public Class Methods

new(ast) click to toggle source
Calls superclass method CompilerError::new
# File lib/compiler_error.rb, line 171
def initialize ast
        super ast.position
end

Public Instance Methods

info() click to toggle source
# File lib/compiler_error.rb, line 175
def info
        "client and server of a direction should not be the same"
end