-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
patrick
committed
Jul 10, 2023
1 parent
060df4e
commit ca5d77c
Showing
1 changed file
with
2 additions
and
7 deletions.
There are no files selected for viewing
9 changes: 2 additions & 7 deletions
9
src/lib/qti-components/qti-responseprocessing/qti-expression/qti-condition-expression.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
|
||
import { html } from 'lit'; | ||
import { QtiExpression } from './qti-expression'; | ||
|
||
export class QtiConditionExpression extends QtiExpression<boolean> { | ||
override render() { | ||
return html``; | ||
} | ||
|
||
public calculate(): boolean { | ||
// eslint-disable-next-line no-throw-literal | ||
throw new Error("Not implemented"); | ||
throw new Error('Not implemented'); | ||
} | ||
} | ||
} |