Browse Source
Merge pull request #7238 from abpframework/auto-merge/rel-4-1/77
Merge branch rel-4.2 with rel-4.1
pull/7239/head
Levent Arman Özak
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
npm/ng-packs/packages/schematics/src/utils/type.ts
|
|
|
@ -9,7 +9,7 @@ import { parseGenerics } from './tree'; |
|
|
|
export function createTypeSimplifier() { |
|
|
|
const parseType = createTypeParser(t => { |
|
|
|
let type = t.replace( |
|
|
|
/System\.([0-9A-Za-z.]+)/g, |
|
|
|
/(?<![^<, ])System\.([0-9A-Za-z.]+)/g, |
|
|
|
(_, match) => SYSTEM_TYPES.get(match) ?? 'any', |
|
|
|
); |
|
|
|
|
|
|
|
|