File tree Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,6 @@ class ExpressionImpl extends String implements ExpressionProps {
101
101
this . prototype [ Symbol . toStringTag ] = "Expression" ;
102
102
}
103
103
104
- constructor ( raw : string ) {
105
- super ( raw ) ;
106
- }
107
-
108
104
[ vimExpressionOf ] ( ) : string {
109
105
return this . valueOf ( ) ;
110
106
}
Original file line number Diff line number Diff line change @@ -136,10 +136,6 @@ class RawStringImpl extends String implements RawStringProps {
136
136
137
137
#cached?: string ;
138
138
139
- constructor ( raw : string ) {
140
- super ( raw ) ;
141
- }
142
-
143
139
[ vimExpressionOf ] ( ) : string {
144
140
this . #cached ??= `"${
145
141
this . valueOf ( ) . replaceAll ( / \\ .| ( " ) / g, ( m , q : string ) => q ? `\\${ q } ` : m )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import type { RawString } from "./string.ts";
28
28
* }
29
29
* ```
30
30
*/
31
- export async function useEval < T extends unknown > (
31
+ export async function useEval < T > (
32
32
denops : Denops ,
33
33
executor : ( helper : UseEvalHelper ) => Promise < T > ,
34
34
) : Promise < T > {
You can’t perform that action at this time.
0 commit comments