dashing.json 1.24 KB
Newer Older
1 2 3 4 5
{
  "name": "flutter",
  "package": "flutter",
  "author": {
    "name": "The Flutter Team",
6
    "link": "https://flutter.dev"
7 8 9 10
  },
  "index": "index.html",
  "icon32x32": "flutter/static-assets/favicon.png",
  "allowJS": true,
11
  "ExternalURL": "https://api.flutter.dev",
12 13 14 15 16
  "selectors": {
    "#exceptions span.name a": {
      "type": "Exception"
    },

17 18
    "h1 > span.kind-library": {
      "type": "Library"
19 20
    },

21 22
    "h1 > span.kind-class": {
      "type": "Class"
23 24
    },

25 26
    "h1 > span.kind-function": {
      "type": "Function"
27 28
    },

29 30
    "h1 > span.kind-typedef": {
      "type": "Type"
31 32
    },

33 34
    "h1 > span.kind-enum": {
      "type": "Enum"
35 36
    },

37 38
    "h1 > span.kind-top-level-constant": {
      "type": "Constant"
39 40
    },

41 42
    "h1 > span.kind-constant": {
      "type": "Constant"
43 44
    },

45
    "h1 > span.kind-method": {
46 47 48
      "type": "Method"
    },

49 50
    "h1 > span.kind-property": {
      "type": "Property"
51 52
    },

53 54
    "h1 > span.kind-top-level-property": {
      "type": "Property"
55 56
    },

57 58
    "h1 > span.kind-constructor": {
      "type": "Constructor"
59 60 61 62 63 64 65 66 67 68 69 70
    },

    ".callables .callable": {
      "requiretext": "operator ",
      "type": "Operator",
      "regexp": "operator ",
      "replacement": ""
    }
  },
  "ignore": [
    "ABOUT"
  ]
71
}