You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/src/compile/nodes/Comment.ts

11 lines
230 B

import Node from './shared/Node';
export default class Comment extends Node {
type: 'Comment';
data: string;
constructor(component, parent, scope, info) {
super(component, parent, scope, info);
this.data = info.data;
}
}