Class: Jazzy::SourceDeclaration

Inherits:
Object
  • Object
show all
Defined in:
lib/jazzy/source_declaration.rb,
lib/jazzy/source_declaration/type.rb,
lib/jazzy/source_declaration/access_control_level.rb

Direct Known Subclasses

SourceDocument

Defined Under Namespace

Classes: AccessControlLevel, Type

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#abstractObject

Returns the value of attribute abstract.



116
117
118
# File 'lib/jazzy/source_declaration.rb', line 116

def abstract
  @abstract
end

#access_control_levelObject

Returns the value of attribute access_control_level.



124
125
126
# File 'lib/jazzy/source_declaration.rb', line 124

def access_control_level
  @access_control_level
end

#childrenObject

counterpart of parent_in_docs



39
40
41
# File 'lib/jazzy/source_declaration.rb', line 39

def children
  @children
end

#columnObject

Returns the value of attribute column.



109
110
111
# File 'lib/jazzy/source_declaration.rb', line 109

def column
  @column
end

#declarationObject

Returns the value of attribute declaration.



114
115
116
# File 'lib/jazzy/source_declaration.rb', line 114

def declaration
  @declaration
end

#default_impl_abstractObject

Returns the value of attribute default_impl_abstract.



117
118
119
# File 'lib/jazzy/source_declaration.rb', line 117

def default_impl_abstract
  @default_impl_abstract
end

#deprecatedObject

Returns the value of attribute deprecated.



129
130
131
# File 'lib/jazzy/source_declaration.rb', line 129

def deprecated
  @deprecated
end

#deprecation_messageObject

Returns the value of attribute deprecation_message.



130
131
132
# File 'lib/jazzy/source_declaration.rb', line 130

def deprecation_message
  @deprecation_message
end

#discussionObject

Returns the value of attribute discussion.



119
120
121
# File 'lib/jazzy/source_declaration.rb', line 119

def discussion
  @discussion
end

#end_lineObject

Returns the value of attribute end_line.



126
127
128
# File 'lib/jazzy/source_declaration.rb', line 126

def end_line
  @end_line
end

#fileObject

Returns the value of attribute file.



107
108
109
# File 'lib/jazzy/source_declaration.rb', line 107

def file
  @file
end

#from_protocol_extensionObject

Returns the value of attribute from_protocol_extension.



118
119
120
# File 'lib/jazzy/source_declaration.rb', line 118

def from_protocol_extension
  @from_protocol_extension
end

#generic_requirementsObject

Returns the value of attribute generic_requirements.



133
134
135
# File 'lib/jazzy/source_declaration.rb', line 133

def generic_requirements
  @generic_requirements
end

#inherited_typesObject

Returns the value of attribute inherited_types.



134
135
136
# File 'lib/jazzy/source_declaration.rb', line 134

def inherited_types
  @inherited_types
end

#lineObject

Returns the value of attribute line.



108
109
110
# File 'lib/jazzy/source_declaration.rb', line 108

def line
  @line
end

#markObject

Returns the value of attribute mark.



123
124
125
# File 'lib/jazzy/source_declaration.rb', line 123

def mark
  @mark
end

#modulenameObject

Returns the value of attribute modulename.



111
112
113
# File 'lib/jazzy/source_declaration.rb', line 111

def modulename
  @modulename
end

#nameObject

Returns the value of attribute name.



112
113
114
# File 'lib/jazzy/source_declaration.rb', line 112

def name
  @name
end

Returns the value of attribute nav_order.



127
128
129
# File 'lib/jazzy/source_declaration.rb', line 127

def nav_order
  @nav_order
end

#objc_nameObject

Returns the value of attribute objc_name.



113
114
115
# File 'lib/jazzy/source_declaration.rb', line 113

def objc_name
  @objc_name
end

#other_language_declarationObject

Returns the value of attribute other_language_declaration.



115
116
117
# File 'lib/jazzy/source_declaration.rb', line 115

def other_language_declaration
  @other_language_declaration
end

#parametersObject

Returns the value of attribute parameters.



121
122
123
# File 'lib/jazzy/source_declaration.rb', line 121

def parameters
  @parameters
end

#parent_in_codeObject

Element containing this declaration in the code



32
33
34
# File 'lib/jazzy/source_declaration.rb', line 32

def parent_in_code
  @parent_in_code
end

#parent_in_docsObject

Logical parent in the documentation. May differ from parent_in_code because of top-level categories and merged extensions.



36
37
38
# File 'lib/jazzy/source_declaration.rb', line 36

def parent_in_docs
  @parent_in_docs
end

#returnObject

Returns the value of attribute return.



120
121
122
# File 'lib/jazzy/source_declaration.rb', line 120

def return
  @return
end

#start_lineObject

Returns the value of attribute start_line.



125
126
127
# File 'lib/jazzy/source_declaration.rb', line 125

def start_line
  @start_line
end

#typeObject

kind of declaration (e.g. class, variable, function)



8
9
10
# File 'lib/jazzy/source_declaration.rb', line 8

def type
  @type
end

#typenameObject

static type of declared element (e.g. String.Type -> ())



10
11
12
# File 'lib/jazzy/source_declaration.rb', line 10

def typename
  @typename
end

#unavailableObject

Returns the value of attribute unavailable.



131
132
133
# File 'lib/jazzy/source_declaration.rb', line 131

def unavailable
  @unavailable
end

#unavailable_messageObject

Returns the value of attribute unavailable_message.



132
133
134
# File 'lib/jazzy/source_declaration.rb', line 132

def unavailable_message
  @unavailable_message
end

#urlObject

Returns the value of attribute url.



122
123
124
# File 'lib/jazzy/source_declaration.rb', line 122

def url
  @url
end

#url_nameObject

Returns the value of attribute url_name.



128
129
130
# File 'lib/jazzy/source_declaration.rb', line 128

def url_name
  @url_name
end

#usrObject

Returns the value of attribute usr.



110
111
112
# File 'lib/jazzy/source_declaration.rb', line 110

def usr
  @usr
end

Instance Method Details

#abstract_globObject



187
188
189
190
191
192
# File 'lib/jazzy/source_declaration.rb', line 187

def abstract_glob
  return [] unless
    Config.instance.abstract_glob_configured &&
    Config.instance.abstract_glob
  Config.instance.abstract_glob.select { |e| File.file? e }
end

#alternative_abstractObject



174
175
176
177
178
# File 'lib/jazzy/source_declaration.rb', line 174

def alternative_abstract
  if file = alternative_abstract_file
    Pathname(file).read
  end
end

#alternative_abstract_fileObject



180
181
182
183
184
185
# File 'lib/jazzy/source_declaration.rb', line 180

def alternative_abstract_file
  abstract_glob.select do |f|
    # allow Structs.md or Structures.md
    [name, url_name].include?(File.basename(f).split('.').first)
  end.first
end

#constrained_extension?Boolean

Returns:

  • (Boolean)


144
145
146
147
# File 'lib/jazzy/source_declaration.rb', line 144

def constrained_extension?
  type.swift_extension? &&
    generic_requirements
end

#display_declarationObject



96
97
98
99
100
# File 'lib/jazzy/source_declaration.rb', line 96

def display_declaration
  return declaration if swift?

  Config.instance.hide_objc? ? other_language_declaration : declaration
end

#display_languageObject

The language in the templates for display



90
91
92
93
94
# File 'lib/jazzy/source_declaration.rb', line 90

def display_language
  return 'Swift' if swift?

  Config.instance.hide_objc? ? 'Swift' : 'Objective-C'
end

#display_other_language_declarationObject



102
103
104
105
# File 'lib/jazzy/source_declaration.rb', line 102

def display_other_language_declaration
  other_language_declaration unless
    Config.instance.hide_objc? || Config.instance.hide_swift?
end

#filepathObject



140
141
142
# File 'lib/jazzy/source_declaration.rb', line 140

def filepath
  CGI.unescape(url)
end

#fully_qualified_nameObject



60
61
62
# File 'lib/jazzy/source_declaration.rb', line 60

def fully_qualified_name
  namespace_path.map(&:name).join('.')
end

#fully_qualified_name_regexpObject

:name doesn’t include any generic type params. This regexp matches any generic type params in parent names.



66
67
68
69
70
# File 'lib/jazzy/source_declaration.rb', line 66

def fully_qualified_name_regexp
  Regexp.new(namespace_path.map(&:name)
                           .map { |n| Regexp.escape(n) }
                           .join('(?:<.*?>)?\.'))
end

#highlight_languageObject



21
22
23
# File 'lib/jazzy/source_declaration.rb', line 21

def highlight_language
  swift? ? Highlighter::SWIFT : Highlighter::OBJC
end

#inherited_types?Boolean

Returns:

  • (Boolean)


157
158
159
160
# File 'lib/jazzy/source_declaration.rb', line 157

def inherited_types?
  inherited_types &&
    !inherited_types.empty?
end

#mark_for_childrenObject



149
150
151
152
153
154
155
# File 'lib/jazzy/source_declaration.rb', line 149

def mark_for_children
  if constrained_extension?
    SourceMark.new_generic_requirements(generic_requirements)
  else
    SourceMark.new
  end
end

#namespace_ancestorsObject



52
53
54
55
56
57
58
# File 'lib/jazzy/source_declaration.rb', line 52

def namespace_ancestors
  if parent_in_code
    parent_in_code.namespace_path
  else
    []
  end
end

#namespace_pathObject

Chain of parent_in_code from top level to self. (Includes self.)



48
49
50
# File 'lib/jazzy/source_declaration.rb', line 48

def namespace_path
  namespace_ancestors + [self]
end

#objc_category_nameObject

If this declaration is an objc category, returns an array with the name of the extended objc class and the category name itself, i.e. [“NSString”, “MyMethods”], nil otherwise.



75
76
77
# File 'lib/jazzy/source_declaration.rb', line 75

def objc_category_name
  name.split(/[\(\)]/) if type.objc_category?
end

#omit_content_from_parent?Boolean

When referencing this item from its parent category, include the content or just link to it directly?

Returns:

  • (Boolean)


27
28
29
# File 'lib/jazzy/source_declaration.rb', line 27

def omit_content_from_parent?
  false
end

#other_inherited_types?(unwanted) ⇒ Boolean

Is there at least one inherited type that is not in the given list?

Returns:

  • (Boolean)


163
164
165
166
# File 'lib/jazzy/source_declaration.rb', line 163

def other_inherited_types?(unwanted)
  return false unless inherited_types?
  inherited_types.any? { |t| !unwanted.include?(t) }
end

#render_as_page?Boolean

Give the item its own page or just inline into parent?

Returns:

  • (Boolean)


13
14
15
# File 'lib/jazzy/source_declaration.rb', line 13

def render_as_page?
  children.any?
end

#swift?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/jazzy/source_declaration.rb', line 17

def swift?
  type.swift_type?
end

#swift_extension_objc_nameObject



83
84
85
86
87
# File 'lib/jazzy/source_declaration.rb', line 83

def swift_extension_objc_name
  return unless type.swift_extension? && usr

  usr.split('(cs)').last
end

#swift_objc_extension?Boolean

Returns:

  • (Boolean)


79
80
81
# File 'lib/jazzy/source_declaration.rb', line 79

def swift_objc_extension?
  type.swift_extension? && usr && usr.start_with?('c:objc')
end

#type_from_doc_module?Boolean

SourceKit only sets modulename for imported modules

Returns:

  • (Boolean)


169
170
171
172
# File 'lib/jazzy/source_declaration.rb', line 169

def type_from_doc_module?
  !type.extension? ||
    (swift? && usr && modulename.nil?)
end

#usage_discouraged?Boolean

Returns:

  • (Boolean)


136
137
138
# File 'lib/jazzy/source_declaration.rb', line 136

def usage_discouraged?
  unavailable || deprecated
end