mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-29 01:27:00 +03:00
Get class visibility correct
This commit is contained in:
parent
d5c2878d53
commit
8e2777ccc0
@ -3,6 +3,7 @@ Pane = require 'pane'
|
||||
$ = require 'jquery'
|
||||
telepath = require 'telepath'
|
||||
|
||||
# Private: Manages the list of panes within a {RootView}
|
||||
module.exports =
|
||||
class PaneContainer extends View
|
||||
registerDeserializer(this)
|
||||
|
@ -1,5 +1,5 @@
|
||||
## Internal ##
|
||||
|
||||
# Private: Maintains the canonical map between screen and buffer positions.
|
||||
#
|
||||
# Facilitates the mapping of screen rows to buffer rows and vice versa. All row
|
||||
# ranges dealt with by this class are end-row exclusive. For example, a fold of
|
||||
# rows 4 through 8 would be expressed as `mapBufferRowRange(4, 9, 1)`, which maps
|
||||
|
@ -3,6 +3,8 @@ $ = require 'jquery'
|
||||
Editor = require 'editor'
|
||||
fuzzyFilter = require 'fuzzy-filter'
|
||||
|
||||
# Public: Provides an interface for users to make a selection from a list of
|
||||
# choices.
|
||||
module.exports =
|
||||
class SelectList extends View
|
||||
|
||||
|
@ -2,6 +2,9 @@ _ = require 'underscore'
|
||||
child_process = require 'child_process'
|
||||
EventEmitter = require 'event-emitter'
|
||||
|
||||
# Public: Run a node script in a separate process.
|
||||
#
|
||||
# Used by the fuzzy-finder.
|
||||
module.exports =
|
||||
class Task
|
||||
_.extend @prototype, EventEmitter
|
||||
|
@ -6,6 +6,7 @@ _ = require 'underscore'
|
||||
fsUtils = require 'fs-utils'
|
||||
Theme = require 'theme'
|
||||
|
||||
# Private: Handles discovering and loading available themes.
|
||||
module.exports =
|
||||
class ThemeManager
|
||||
_.extend @prototype, EventEmitter
|
||||
|
@ -3,6 +3,7 @@ textUtils = require 'text-utils'
|
||||
|
||||
whitespaceRegexesByTabLength = {}
|
||||
|
||||
# Private: Represents a single unit of text as selected by a grammar.
|
||||
module.exports =
|
||||
class Token
|
||||
value: null
|
||||
|
@ -5,6 +5,7 @@ remote = require 'remote'
|
||||
Subscriber = require 'subscriber'
|
||||
fsUtils = require 'fs-utils'
|
||||
|
||||
# Private: Handles low-level events related to the window.
|
||||
module.exports =
|
||||
class WindowEventHandler
|
||||
_.extend @prototype, Subscriber
|
||||
|
Loading…
Reference in New Issue
Block a user