File: SourceModule.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (96 lines) | stat: -rw-r--r-- 4,382 bytes parent folder | download
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// FYI: The lit commands and FileCheck statements are at the bottom of the file, to be resilient
// against changes to the doc comment format.

public protocol P {
   /// same module doc
   func something()
}

public struct NoDocOverride: Hashable, P {
   public func hash(into: inout Hasher) {}
   public func something() {}
}

public struct Override: Hashable, P {
   /// override of doc from Swift
   public func hash(into: inout Hasher) {}
   /// override of doc from same module symbol
   public func something() {}
}

// RUN: %empty-directory(%t)
// RUN: %target-build-swift %s -module-name SourceModule -emit-module-path %t/SourceModule.swiftmodule
// RUN: %target-swift-symbolgraph-extract -module-name SourceModule -I %t -pretty-print -output-dir %t
// RUN: %FileCheck %s --input-file %t/SourceModule.symbols.json --check-prefix=NO-OVERRIDE-SAME
// RUN: %FileCheck %s --input-file %t/SourceModule.symbols.json --check-prefix=NO-OVERRIDE-OTHER
// RUN: %FileCheck %s --input-file %t/SourceModule.symbols.json --check-prefix=OVERRIDE-SAME
// RUN: %FileCheck %s --input-file %t/SourceModule.symbols.json --check-prefix=OVERRIDE-OTHER

// NO-OVERRIDE-SAME-LABEL: "precise": "s:12SourceModule13NoDocOverrideV9somethingyyF"
// NO-OVERRIDE-SAME:      "docComment": {
// NO-OVERRIDE-SAME-NEXT:        "uri": "file://{{.*}}SourceModule.swift",
// NO-OVERRIDE-SAME-NEXT:        "module": "SourceModule",
// NO-OVERRIDE-SAME-NEXT:        "lines": [
// NO-OVERRIDE-SAME-NEXT:          {
// NO-OVERRIDE-SAME-NEXT:            "range": {
// NO-OVERRIDE-SAME-NEXT:              "start": {
// NO-OVERRIDE-SAME-NEXT:                "line": 4,
// NO-OVERRIDE-SAME-NEXT:                "character": 7
// NO-OVERRIDE-SAME-NEXT:              },
// NO-OVERRIDE-SAME-NEXT:              "end": {
// NO-OVERRIDE-SAME-NEXT:                "line": 4,
// NO-OVERRIDE-SAME-NEXT:                "character": 22
// NO-OVERRIDE-SAME-NEXT:              }
// NO-OVERRIDE-SAME-NEXT:            },
// NO-OVERRIDE-SAME-NEXT:            "text": "same module doc"
// NO-OVERRIDE-SAME-NEXT:          }
// NO-OVERRIDE-SAME-NEXT:        ]
// NO-OVERRIDE-SAME-NEXT:      }

// NO-OVERRIDE-OTHER-LABEL: "precise": "s:12SourceModule13NoDocOverrideV4hash4intoys6HasherVz_tF"
// NO-OVERRIDE-OTHER:      "docComment": {
// NO-OVERRIDE-OTHER-NEXT:        "module": "Swift",
// NO-OVERRIDE-OTHER-NEXT:        "lines": [
// actual doc comment lines skipped because they're from the stdlib

// OVERRIDE-SAME-LABEL: "precise": "s:12SourceModule8OverrideV9somethingyyF",
// OVERRIDE-SAME:      "docComment": {
// OVERRIDE-SAME-NEXT:        "uri": "file://{{.*}}SourceModule.swift",
// OVERRIDE-SAME-NEXT:        "module": "SourceModule",
// OVERRIDE-SAME-NEXT:        "lines": [
// OVERRIDE-SAME-NEXT:          {
// OVERRIDE-SAME-NEXT:            "range": {
// OVERRIDE-SAME-NEXT:              "start": {
// OVERRIDE-SAME-NEXT:                "line": 16,
// OVERRIDE-SAME-NEXT:                "character": 7
// OVERRIDE-SAME-NEXT:              },
// OVERRIDE-SAME-NEXT:              "end": {
// OVERRIDE-SAME-NEXT:                "line": 16,
// OVERRIDE-SAME-NEXT:                "character": 46
// OVERRIDE-SAME-NEXT:              }
// OVERRIDE-SAME-NEXT:            },
// OVERRIDE-SAME-NEXT:            "text": "override of doc from same module symbol"
// OVERRIDE-SAME-NEXT:          }
// OVERRIDE-SAME-NEXT:        ]
// OVERRIDE-SAME-NEXT:      }

// OVERRIDE-OTHER-LABEL: "precise": "s:12SourceModule8OverrideV4hash4intoys6HasherVz_tF",
// OVERRIDE-OTHER:      "docComment": {
// OVERRIDE-OTHER-NEXT:        "uri": "file://{{.*}}SourceModule.swift",
// OVERRIDE-OTHER-NEXT:        "module": "SourceModule",
// OVERRIDE-OTHER-NEXT:        "lines": [
// OVERRIDE-OTHER-NEXT:          {
// OVERRIDE-OTHER-NEXT:            "range": {
// OVERRIDE-OTHER-NEXT:              "start": {
// OVERRIDE-OTHER-NEXT:                "line": 14,
// OVERRIDE-OTHER-NEXT:                "character": 7
// OVERRIDE-OTHER-NEXT:              },
// OVERRIDE-OTHER-NEXT:              "end": {
// OVERRIDE-OTHER-NEXT:                "line": 14,
// OVERRIDE-OTHER-NEXT:                "character": 33
// OVERRIDE-OTHER-NEXT:              }
// OVERRIDE-OTHER-NEXT:            },
// OVERRIDE-OTHER-NEXT:            "text": "override of doc from Swift"
// OVERRIDE-OTHER-NEXT:          }
// OVERRIDE-OTHER-NEXT:        ]
// OVERRIDE-OTHER-NEXT:      },