class AdLint::Language

DESCRIPTION

Programming language.

Public Class Methods

of(fpath) click to toggle source

DESCRIPTION

Detects programming language of the specified source file.

PARAMETER

fpath

Pathname – File path of the source file.

RETURN VALUE

LanguageObject of the derived class of Language class.

# File lib/adlint/lang.rb, line 50
def self.of(fpath)
  # FIXME: Dummy implementation.
  C
end