diff options
Diffstat (limited to 'devtools/shared/specs/breakpoint.js')
-rw-r--r-- | devtools/shared/specs/breakpoint.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/devtools/shared/specs/breakpoint.js b/devtools/shared/specs/breakpoint.js new file mode 100644 index 000000000..e30c03ce8 --- /dev/null +++ b/devtools/shared/specs/breakpoint.js @@ -0,0 +1,16 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +"use strict"; + +const {generateActorSpec} = require("devtools/shared/protocol"); + +const breakpointSpec = generateActorSpec({ + typeName: "breakpoint", + + methods: { + delete: {} + }, +}); + +exports.breakpointSpec = breakpointSpec; |