Merge changes I5801bcc3,Ib2290546 am: 1584123dbb
Original change: https://android-review.googlesource.com/c/platform/development/+/1779346 Change-Id: Iead19c226245fe700bed72a07241a18c8a3f41d4
This commit is contained in:
@@ -13,12 +13,12 @@ const routes = [
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/Demo',
|
||||
path: '/demo',
|
||||
name: 'Demo',
|
||||
component: Demo
|
||||
},
|
||||
{
|
||||
path: '/About',
|
||||
path: '/about',
|
||||
name: 'About',
|
||||
component: About
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ export class MapParser {
|
||||
*/
|
||||
async add(partitionName, totalLength) {
|
||||
let /** Array<String> */ map = []
|
||||
const /** RegExp */ regexNumber = /(?<![0-9\-])\d+(?![0-9\-])/g
|
||||
const /** RegExp */ regexNumber = /\d+/g
|
||||
const /** Reg */ regexRange = /\d+\-\d+/g
|
||||
for (let i = 0; i < totalLength; i++) map[i] = 'unknown'
|
||||
if (this.mapFiles.get(partitionName)) {
|
||||
|
||||
Reference in New Issue
Block a user