module Noir::CrystalCalleeExtractor

Extended Modules

Defined in:

miniparsers/crystal_callee_extractor.cr

Constant Summary

BARE_CALL_REGEX = /(?<![.\w:])([a-z_]\w*[!?=]?)(?:\s*\(|(?=\s+(?:[:'"]|@{1,2}[A-Za-z_]|[A-Za-z_]\w*[!?=]?)))/
RECEIVER_CALL_REGEX = /((?:@{1,2})?[A-Za-z_]\w*(?:::[A-Za-z_]\w*)*(?:\.[A-Za-z_]\w*[!?=]?)+)\s*(?:\(|\b|$)/
RESERVED = Set {"abstract", "alias", "annotation", "as", "asm", "begin", "break", "case", "class", "def", "do", "else", "elsif", "end", "ensure", "enum", "extend", "false", "for", "fun", "if", "in", "include", "lib", "macro", "module", "next", "nil", "of", "out", "private", "protected", "require", "rescue", "return", "self", "struct", "super", "then", "true", "type", "union", "unless", "until", "when", "while", "with", "yield"}

Instance Method Summary

Instance Method Detail

def attach_to(endpoint : Endpoint, callees : Array(Entry)) #

[View source]
def callees_for_body(body : String, file_path : String, start_line : Int32) : Array(Entry) #

[View source]
def strip_comment(line : String) : String #

[View source]