mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[REF] compiler: rename qweb/ into compiler/
This commit is contained in:
committed by
Aaron Bohy
parent
7513b1e507
commit
1700a6fba3
@@ -1,4 +1,4 @@
|
||||
import { TemplateSet } from "../../src/qweb/template_helpers";
|
||||
import { TemplateSet } from "../../src/compiler/template_helpers";
|
||||
import { mount } from "../../src/blockdom";
|
||||
import { makeTestFixture, renderToBdom, renderToString, snapshotEverything } from "../helpers";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { compileExpr, tokenize } from "../../src/qweb/inline_expressions";
|
||||
import { compileExpr, tokenize } from "../../src/compiler/inline_expressions";
|
||||
|
||||
describe("tokenizer", () => {
|
||||
test("simple tokens", () => {
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ASTType, parse } from "../../src/qweb/parser";
|
||||
import { ASTType, parse } from "../../src/compiler/parser";
|
||||
|
||||
describe("qweb parser", () => {
|
||||
// ---------------------------------------------------------------------------
|
||||
@@ -1,4 +1,4 @@
|
||||
import { TemplateSet } from "../../src/qweb/template_helpers";
|
||||
import { TemplateSet } from "../../src/compiler/template_helpers";
|
||||
import { mount } from "../../src/blockdom";
|
||||
import { renderToBdom, snapshotEverything } from "../helpers";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { TemplateSet } from "../../src/qweb/template_helpers";
|
||||
import { TemplateSet } from "../../src/compiler/template_helpers";
|
||||
import { renderToString, TestContext, compile } from "../helpers";
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
+2
-2
@@ -14,8 +14,8 @@ import {
|
||||
} from "../src";
|
||||
import { BDom } from "../src/blockdom";
|
||||
import { blockDom } from "../src";
|
||||
import { CompileOptions, compileTemplate, Template } from "../src/qweb/compiler";
|
||||
import { globalTemplates, TemplateSet, UTILS } from "../src/qweb/template_helpers";
|
||||
import { CompileOptions, compileTemplate, Template } from "../src/compiler/code_generator";
|
||||
import { globalTemplates, TemplateSet, UTILS } from "../src/compiler/template_helpers";
|
||||
import { xml } from "../src/tags";
|
||||
|
||||
const mount = blockDom.mount;
|
||||
|
||||
Reference in New Issue
Block a user